A reusable brewing recipe with parameters for repeatable coffee preparation
tid
Timestamp-based ID
Properties
brewerRef
string
at-uri
Optional
AT-URI reference to a specific brewer record
brewerType
string
Optional
Fallback brewer type when no specific brewer is referenced (e.g., 'Pour-Over', 'French Press')
maxLength: 100 bytescoffeeAmount
integer
Optional
Amount of coffee in tenths of grams (e.g., 180 = 18.0g)
minimum: 0createdAt
string
datetime
Required
Timestamp when the recipe was created
name
string
Required
User-given name for the recipe (e.g., 'James Hoffmann V60')
maxLength: 200 bytesnotes
string
Optional
Free-text instructions, tips, or notes about the recipe
maxLength: 2000 bytespours
array
of
ref
#pour
Optional
Array of pour information for multi-pour methods
sourceRef
string
at-uri
Optional
AT-URI of the recipe this was forked/copied from
waterAmount
integer
Optional
Amount of water in tenths of grams (e.g., 3000 = 300.0g)
minimum: 0View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 200,
"description": "User-given name for the recipe (e.g., 'James Hoffmann V60')"
},
"notes": {
"type": "string",
"maxLength": 2000,
"description": "Free-text instructions, tips, or notes about the recipe"
},
"pours": {
"type": "array",
"items": {
"ref": "#pour",
"type": "ref"
},
"description": "Array of pour information for multi-pour methods"
},
"brewerRef": {
"type": "string",
"format": "at-uri",
"description": "AT-URI reference to a specific brewer record"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the recipe was created"
},
"sourceRef": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the recipe this was forked/copied from"
},
"brewerType": {
"type": "string",
"maxLength": 100,
"description": "Fallback brewer type when no specific brewer is referenced (e.g., 'Pour-Over', 'French Press')"
},
"waterAmount": {
"type": "integer",
"minimum": 0,
"description": "Amount of water in tenths of grams (e.g., 3000 = 300.0g)"
},
"coffeeAmount": {
"type": "integer",
"minimum": 0,
"description": "Amount of coffee in tenths of grams (e.g., 180 = 18.0g)"
}
}
},
"description": "A reusable brewing recipe with parameters for repeatable coffee preparation"
}