A user-owned grouping of drinks. Currently supports MAIN (drinks the user has reviewed) and FAVORITES (drinks the user has marked for later). Singleton per (DID, type) — enforced server-side at ingest, not by the lexicon.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"type",
"createdAt"
],
"properties": {
"type": {
"enum": [
"MAIN",
"FAVORITES"
],
"type": "string",
"maxLength": 32
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A user-owned grouping of drinks. Currently supports MAIN (drinks the user has reviewed) and FAVORITES (drinks the user has marked for later). Singleton per (DID, type) — enforced server-side at ingest, not by the lexicon."
}