A coffee brewing device or method
Record Key
tid
Timestamp-based ID
Properties
brewerType
string
Optional
Category of brewer. Known values: pourover, espresso, immersion, mokapot, coldbrew, cupping, other
maxLength: 100 bytesKnown values:
pourover, espresso, immersion, mokapot, coldbrew, cupping, othercreatedAt
string
datetime
Required
Timestamp when the brewer record was created
description
string
Optional
Description or notes about the brewer
maxLength: 1000 byteslink
string
uri
Optional
Optional product, manual, or information URL for the brewer
maxLength: 500 bytesname
string
Required
Name of the brewer (e.g., 'V60', 'Aeropress', 'Chemex')
maxLength: 200 bytessourceRef
string
at-uri
Optional
AT-URI of the record this entity was sourced from
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"link": {
"type": "string",
"format": "uri",
"maxLength": 500,
"description": "Optional product, manual, or information URL for the brewer"
},
"name": {
"type": "string",
"maxLength": 200,
"description": "Name of the brewer (e.g., 'V60', 'Aeropress', 'Chemex')"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the brewer record was created"
},
"sourceRef": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the record this entity was sourced from"
},
"brewerType": {
"type": "string",
"maxLength": 100,
"description": "Category of brewer. Known values: pourover, espresso, immersion, mokapot, coldbrew, cupping, other",
"knownValues": [
"pourover",
"espresso",
"immersion",
"mokapot",
"coldbrew",
"cupping",
"other"
]
},
"description": {
"type": "string",
"maxLength": 1000,
"description": "Description or notes about the brewer"
}
}
},
"description": "A coffee brewing device or method"
}