# space.dailyreads.feed

> Published by [dailyreads.space](https://lexicon.garden/identity/did:plc:hdfb5gylivnmaqmwfcyzer6d)

✓ This is the authoritative definition for this NSID.

## Description

A feed (article, newsletter, podcast, or video source) the user has subscribed to.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:hdfb5gylivnmaqmwfcyzer6d/space.dailyreads.feed)
- [Documentation](https://lexicon.garden/lexicon/did:plc:hdfb5gylivnmaqmwfcyzer6d/space.dailyreads.feed/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:hdfb5gylivnmaqmwfcyzer6d/space.dailyreads.feed/examples)

## Definitions

### `space.dailyreads.feed`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | The feed URL (RSS/Atom or similar). |
| `tags` | `array` | No | User-defined tags for organizing feeds. |
| `type` | `string` | Yes | Content type for this feed. |
| `title` | `string` | Yes | Display title for the feed. |
| `createdAt` | `string` (datetime) | Yes | When the user added this feed. |

## Raw Schema

```json
{
  "id": "space.dailyreads.feed",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "url",
          "title",
          "type",
          "createdAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "The feed URL (RSS/Atom or similar)."
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 320,
              "minLength": 1,
              "maxGraphemes": 64
            },
            "maxLength": 16,
            "description": "User-defined tags for organizing feeds."
          },
          "type": {
            "enum": [
              "article",
              "newsletter",
              "podcast",
              "video"
            ],
            "type": "string",
            "description": "Content type for this feed."
          },
          "title": {
            "type": "string",
            "maxLength": 1500,
            "minLength": 1,
            "description": "Display title for the feed.",
            "maxGraphemes": 300
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the user added this feed."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A feed (article, newsletter, podcast, or video source) the user has subscribed to."
}
```
