A subscription to a content source, identified by the source union: an RSS/Atom feed or a Standardfeed publication.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
primary
boolean
Optional
Whether the source receives special treatment in the digest.
source
union
Required
Identity of the subscribed source. Open union; readers tolerate unknown variants.
tags
array
of
string
Optional
Free-form, user-defined tags. No controlled vocabulary.
maxLength: 10 itemstitle
string
Optional
Display title. Auto-prefilled from the source, user-editable.
maxLength: 1280 bytesmaxGraphemes: 128 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"source",
"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 source, user-editable.",
"maxGraphemes": 128
},
"source": {
"refs": [
"#rssFeed",
"#standardPublication"
],
"type": "union",
"description": "Identity of the subscribed source. Open union; readers tolerate unknown variants."
},
"primary": {
"type": "boolean",
"description": "Whether the source receives special treatment in the digest."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A subscription to a content source, identified by the source union: an RSS/Atom feed or a Standardfeed publication."
}