A drink in a user's Collection. References the parent Collection via at-uri and embeds the drink description.
Record Key
tid
Timestamp-based ID
Properties
collection
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
drink
ref
#drink
Required
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"collection",
"drink",
"createdAt"
],
"properties": {
"drink": {
"ref": "#drink",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"collection": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "A drink in a user's Collection. References the parent Collection via at-uri and embeds the drink description."
}