at.pocketfeed.subscription

pocketfeed.at

Documentation

Pocket feed subscription

main record

Pocket feed subscription

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

favicon string Optional

Website favicon

maxLength: 2048 bytes
feedUrl string uri Required

RSS Feed URL

maxLength: 2048 bytes
siteUrl string uri Optional

Website URL

maxLength: 2048 bytes
title string Optional

Feed title

maxLength: 512 bytes
View raw schema
{
  "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"
}

Lexicon Garden

@