An item in a collection linking to a post
Record Key
tid
Timestamp-based ID
Properties
collection
ref
com.atproto.repo.strongRef
Required
Reference to the collection
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
order
integer
Optional
Order within the collection
minimum: 0post
ref
com.atproto.repo.strongRef
Required
Reference to the post
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"collection",
"post",
"createdAt"
],
"properties": {
"post": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the post"
},
"order": {
"type": "integer",
"minimum": 0,
"description": "Order within the collection"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"collection": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the collection"
}
}
},
"description": "An item in a collection linking to a post"
}