A drink on a Winesky list. Created when a user adds a drink via @winesky.app on Bluesky.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
drink
ref
app.winesky.review#drink
Required
No description available.
list
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
parentPostUri
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
triggerPostUri
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"list",
"drink",
"parentPostUri",
"createdAt"
],
"properties": {
"list": {
"type": "string",
"format": "at-uri"
},
"drink": {
"ref": "app.winesky.review#drink",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"parentPostUri": {
"type": "string",
"format": "at-uri"
},
"triggerPostUri": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "A drink on a Winesky list. Created when a user adds a drink via @winesky.app on Bluesky."
}