A coffee bean variety tracked by the user
tid
Timestamp-based ID
Properties
closed
boolean
Optional
Whether the bag is closed/finished (default: false)
createdAt
string
datetime
Required
Timestamp when the bean record was created
description
string
Optional
Public roaster description or tasting notes for the beans
maxLength: 1000 byteslink
string
uri
Optional
Optional product, vendor, or information URL for the beans
maxLength: 500 bytesname
string
Required
Name of the coffee bean (e.g., 'Ethiopian Yirgacheffe', 'Morning Blend')
maxLength: 200 bytesnotes
string
Optional
Personal notes about the beans
maxLength: 2000 bytesorigin
string
Optional
Geographic origin of the beans (e.g., 'Ethiopia', 'Colombia')
maxLength: 200 bytesprocess
string
Optional
Processing method (e.g., 'Washed', 'Natural', 'Honey')
maxLength: 100 bytesrating
integer
Optional
User rating of the bean (1-10 scale, optional)
minimum: 1maximum: 10roastDate
string
Optional
Optional date when the beans were roasted (YYYY-MM-DD)
maxLength: 10 bytesroastLevel
string
Optional
Roast level (e.g., 'Light', 'Medium', 'Dark')
maxLength: 100 bytesroasterRef
string
at-uri
Optional
AT-URI reference to the roaster record (e.g., at://did:plc:abc/social.arabica.alpha.roaster/3jxy...)
sourceRef
string
at-uri
Optional
AT-URI of the record this entity was sourced from
variety
string
Optional
Coffee variety (e.g., 'SL28', 'Typica', 'Gesha', 'Caturra')
maxLength: 200 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"link": {
"type": "string",
"format": "uri",
"maxLength": 500,
"description": "Optional product, vendor, or information URL for the beans"
},
"name": {
"type": "string",
"maxLength": 200,
"description": "Name of the coffee bean (e.g., 'Ethiopian Yirgacheffe', 'Morning Blend')"
},
"notes": {
"type": "string",
"maxLength": 2000,
"description": "Personal notes about the beans"
},
"closed": {
"type": "boolean",
"description": "Whether the bag is closed/finished (default: false)"
},
"origin": {
"type": "string",
"maxLength": 200,
"description": "Geographic origin of the beans (e.g., 'Ethiopia', 'Colombia')"
},
"rating": {
"type": "integer",
"maximum": 10,
"minimum": 1,
"description": "User rating of the bean (1-10 scale, optional)"
},
"process": {
"type": "string",
"maxLength": 100,
"description": "Processing method (e.g., 'Washed', 'Natural', 'Honey')"
},
"variety": {
"type": "string",
"maxLength": 200,
"description": "Coffee variety (e.g., 'SL28', 'Typica', 'Gesha', 'Caturra')"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the bean record was created"
},
"roastDate": {
"type": "string",
"maxLength": 10,
"description": "Optional date when the beans were roasted (YYYY-MM-DD)"
},
"sourceRef": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the record this entity was sourced from"
},
"roastLevel": {
"type": "string",
"maxLength": 100,
"description": "Roast level (e.g., 'Light', 'Medium', 'Dark')"
},
"roasterRef": {
"type": "string",
"format": "at-uri",
"description": "AT-URI reference to the roaster record (e.g., at://did:plc:abc/social.arabica.alpha.roaster/3jxy...)"
},
"description": {
"type": "string",
"maxLength": 1000,
"description": "Public roaster description or tasting notes for the beans"
}
}
},
"description": "A coffee bean variety tracked by the user"
}