A coffee grinder used for grinding beans
Record Key
tid
Timestamp-based ID
Properties
burrType
string
Optional
Type of burr (empty string for unknown)
maxLength: 20 bytesAllowed:
conical, flat, blade, createdAt
string
datetime
Required
Timestamp when the grinder record was created
grinderType
string
Optional
Type of grinder mechanism
maxLength: 20 bytesAllowed:
hand, electric, portable_electriclink
string
uri
Optional
Optional product, manual, or information URL for the grinder
maxLength: 500 bytesname
string
Required
Name or model of the grinder (e.g., 'Baratza Encore', '1Zpresso JX')
maxLength: 200 bytesnotes
string
Optional
Additional notes about the grinder
maxLength: 1000 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 grinder"
},
"name": {
"type": "string",
"maxLength": 200,
"description": "Name or model of the grinder (e.g., 'Baratza Encore', '1Zpresso JX')"
},
"notes": {
"type": "string",
"maxLength": 1000,
"description": "Additional notes about the grinder"
},
"burrType": {
"enum": [
"conical",
"flat",
"blade",
""
],
"type": "string",
"maxLength": 20,
"description": "Type of burr (empty string for unknown)"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the grinder record was created"
},
"sourceRef": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the record this entity was sourced from"
},
"grinderType": {
"enum": [
"hand",
"electric",
"portable_electric"
],
"type": "string",
"maxLength": 20,
"description": "Type of grinder mechanism"
}
}
},
"description": "A coffee grinder used for grinding beans"
}