A reader following a series. Public: a series' follower count is only meaningful because these are readable by anyone.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
notify
boolean
Optional
Also deliver a notification when the series posts. Kept on the record rather than in app-local state so notification choices travel with the reader to any other Graphik client.
subject
string
at-uri
Required
AT-URI of the followed art.graphik.series.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"notify": {
"type": "boolean",
"description": "Also deliver a notification when the series posts. Kept on the record rather than in app-local state so notification choices travel with the reader to any other Graphik client."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the followed art.graphik.series."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A reader following a series. Public: a series' follower count is only meaningful because these are readable by anyone."
}