# at.pocketfeed.subscription

> Published by [pocketfeed.at](https://lexicon.garden/identity/did:plc:auqkaomfip6d6fotzjbutlwe)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:auqkaomfip6d6fotzjbutlwe/at.pocketfeed.subscription)
- [Documentation](https://lexicon.garden/lexicon/did:plc:auqkaomfip6d6fotzjbutlwe/at.pocketfeed.subscription/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:auqkaomfip6d6fotzjbutlwe/at.pocketfeed.subscription/examples)

## Definitions

### `at.pocketfeed.subscription`

**Type**: `record`

Pocket feed subscription

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | No | Feed title |
| `favicon` | `string` | No | Website favicon |
| `feedUrl` | `string` (uri) | Yes | RSS Feed URL |
| `siteUrl` | `string` (uri) | No | Website URL |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "at.pocketfeed.subscription",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "feedUrl",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 512,
            "description": "Feed title"
          },
          "favicon": {
            "type": "string",
            "maxLength": 2048,
            "description": "Website favicon"
          },
          "feedUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "RSS Feed URL"
          },
          "siteUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Website URL"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Pocket feed subscription"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
