No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
gallery
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
item
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
position
integer
Optional
No description available.
Default:
0View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt",
"gallery",
"item"
],
"properties": {
"item": {
"type": "string",
"format": "at-uri"
},
"gallery": {
"type": "string",
"format": "at-uri"
},
"position": {
"type": "integer",
"default": 0
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}