No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When the user added this feed.
tags
array
of
string
Optional
User-defined tags for organizing feeds.
maxLength: 16 itemstitle
string
Required
Display title for the feed.
maxLength: 1500 bytesminLength: 1 bytesmaxGraphemes: 300 graphemestype
string
Required
Content type for this feed.
Allowed:
article, newsletter, podcast, videourl
string
uri
Required
The feed URL (RSS/Atom or similar).
View raw schema
{
"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."
}
}
}
}