No description available.
Record Key
tid
Timestamp-based ID
Properties
feed
string
at-uri
Required
AT-URI of the user's space.dailyreads.feed record this item came from.
readAt
string
datetime
Required
When the user marked this item as read.
tags
array
of
string
Optional
User-defined tags for organizing reads.
maxLength: 16 itemstitle
string
Required
Title of the item that was read.
maxLength: 2500 bytesminLength: 1 bytesmaxGraphemes: 500 graphemesurl
string
uri
Required
URL of the item that was read.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"feed",
"title",
"url",
"readAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "URL of the item that was read."
},
"feed": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the user's space.dailyreads.feed record this item came from."
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 320,
"minLength": 1,
"maxGraphemes": 64
},
"maxLength": 16,
"description": "User-defined tags for organizing reads."
},
"title": {
"type": "string",
"maxLength": 2500,
"minLength": 1,
"description": "Title of the item that was read.",
"maxGraphemes": 500
},
"readAt": {
"type": "string",
"format": "datetime",
"description": "When the user marked this item as read."
}
}
}
}