blue.morgen.feed.subscription

morgen.blue

Documentation

A subscription to an RSS/Atom feed.

main record

A subscription to an RSS/Atom feed.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

feedUrl string uri Required

URL of the RSS/Atom feed.

maxLength: 2048 bytes
primary boolean Optional

Whether the feed receives special treatment in the digest.

siteUrl string uri Optional

Human-facing site URL associated with the feed.

maxLength: 2048 bytes
tags array of string Optional

Free-form, user-defined tags. No controlled vocabulary.

maxLength: 10 items
title string Optional

Display title. Auto-prefilled from the feed, user-editable.

maxLength: 1280 bytesmaxGraphemes: 128 graphemes
View raw schema
{
  "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."
}

Lexicon Garden

@