# org.chaoticharmonylabs.feed.defs

> Published by [chaoticharmonylabs.org](https://lexicon.garden/identity/did:plc:mqmbvlnt6fcqqboqqcg3b7d4)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mqmbvlnt6fcqqboqqcg3b7d4/org.chaoticharmonylabs.feed.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mqmbvlnt6fcqqboqqcg3b7d4/org.chaoticharmonylabs.feed.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mqmbvlnt6fcqqboqqcg3b7d4/org.chaoticharmonylabs.feed.defs/examples)

## Definitions

### `org.chaoticharmonylabs.feed.defs#feed`

**Type**: `object`

A content feed definition for Orbits app

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Display name for the feed |
| `tags` | `array` | No | Tags for categorization |
| `type` | `string` | Yes | Media type this feed contains |
| `source` | `string` (uri) | No | External feed URL or AT-URI |
| `isPublic` | `boolean` | No | Whether this feed is publicly discoverable |
| `settings` | `object` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "org.chaoticharmonylabs.feed.defs",
  "defs": {
    "feed": {
      "type": "object",
      "required": [
        "name",
        "type",
        "createdAt"
      ],
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 100,
          "minLength": 1,
          "description": "Display name for the feed"
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "maxItems": 20,
          "description": "Tags for categorization"
        },
        "type": {
          "enum": [
            "video",
            "photo",
            "text"
          ],
          "type": "string",
          "description": "Media type this feed contains"
        },
        "source": {
          "type": "string",
          "format": "uri",
          "description": "External feed URL or AT-URI"
        },
        "isPublic": {
          "type": "boolean",
          "default": true,
          "description": "Whether this feed is publicly discoverable"
        },
        "settings": {
          "type": "object",
          "properties": {
            "maxItems": {
              "type": "integer",
              "maximum": 1000,
              "minimum": 10
            },
            "refreshInterval": {
              "type": "integer",
              "minimum": 300
            }
          }
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "updatedAt": {
          "type": "string",
          "format": "datetime"
        },
        "description": {
          "type": "string",
          "maxLength": 500
        }
      },
      "description": "A content feed definition for Orbits app"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
