A series on the reader's shelf. Not the same as a follow: following is a public statement that feeds a creator's follower count, shelving is 'this is mine'. Readers commonly do one without the other.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
note
string
Optional
The reader's own note about the series.
maxLength: 4000 bytesmaxGraphemes: 400 graphemesseries
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
shelf
string
Optional
No description available.
maxLength: 16 bytesKnown values:
reading, planned, completed, paused, droppedView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"series",
"createdAt"
],
"properties": {
"note": {
"type": "string",
"maxLength": 4000,
"description": "The reader's own note about the series.",
"maxGraphemes": 400
},
"shelf": {
"type": "string",
"maxLength": 16,
"knownValues": [
"reading",
"planned",
"completed",
"paused",
"dropped"
]
},
"series": {
"type": "string",
"format": "at-uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A series on the reader's shelf. Not the same as a follow: following is a public statement that feeds a creator's follower count, shelving is 'this is mine'. Readers commonly do one without the other."
}