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 bytesfeedUrl
string
uri
Required
RSS Feed URL
maxLength: 2048 bytessiteUrl
string
uri
Optional
Website URL
maxLength: 2048 bytestitle
string
Optional
Feed title
maxLength: 512 bytesView 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"
}