# blue.morgen.feed.subscription

> Published by [morgen.blue](https://lexicon.garden/identity/did:plc:h7bhafnu5c2p63swrc64zh2z)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.feed.subscription)
- [Documentation](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.feed.subscription/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.feed.subscription/examples)

## Definitions

### `blue.morgen.feed.subscription`

**Type**: `record`

A subscription to an RSS/Atom feed.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No | Free-form, user-defined tags. No controlled vocabulary. |
| `title` | `string` | No | Display title. Auto-prefilled from the feed, user-editable. |
| `feedUrl` | `string` (uri) | Yes | URL of the RSS/Atom feed. |
| `primary` | `boolean` | No | Whether the feed receives special treatment in the digest. |
| `siteUrl` | `string` (uri) | No | Human-facing site URL associated with the feed. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "blue.morgen.feed.subscription",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "feedUrl",
          "createdAt"
        ],
        "properties": {
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 640,
              "maxGraphemes": 64
            },
            "maxLength": 10,
            "description": "Free-form, user-defined tags. No controlled vocabulary."
          },
          "title": {
            "type": "string",
            "maxLength": 1280,
            "description": "Display title. Auto-prefilled from the feed, user-editable.",
            "maxGraphemes": 128
          },
          "feedUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "URL of the RSS/Atom feed."
          },
          "primary": {
            "type": "boolean",
            "description": "Whether the feed receives special treatment in the digest."
          },
          "siteUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Human-facing site URL associated with the feed."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A subscription to an RSS/Atom feed."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
