Reading note on a specific RSS article.
Record Key
tid
Timestamp-based ID
Properties
articleUrl
string
Required
No description available.
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
feedUrl
string
Required
No description available.
note
string
Optional
No description available.
maxGraphemes: 500 graphemesquote
string
Optional
No description available.
maxGraphemes: 5000 graphemesrating
integer
Optional
No description available.
minimum: 1maximum: 5tags
array
of
string
Optional
No description available.
maxLength: 10 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"feedUrl",
"articleUrl"
],
"properties": {
"note": {
"type": "string",
"maxGraphemes": 500
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxGraphemes": 50
},
"maxLength": 10
},
"quote": {
"type": "string",
"maxGraphemes": 5000
},
"rating": {
"type": "integer",
"maximum": 5,
"minimum": 1
},
"feedUrl": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"articleUrl": {
"type": "string"
}
}
},
"description": "Reading note on a specific RSS article."
}