A coffee roaster company
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the roaster record was created
location
string
Optional
Location of the roaster (e.g., 'Raleigh, NC', 'Floyd, VA')
maxLength: 200 bytesname
string
Required
Name of the roaster (e.g., 'Black & White', 'Red Rooster')
maxLength: 200 bytessourceRef
string
at-uri
Optional
AT-URI of the record this entity was sourced from
website
string
uri
Optional
Roaster's website URL
maxLength: 500 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 200,
"description": "Name of the roaster (e.g., 'Black & White', 'Red Rooster')"
},
"website": {
"type": "string",
"format": "uri",
"maxLength": 500,
"description": "Roaster's website URL"
},
"location": {
"type": "string",
"maxLength": 200,
"description": "Location of the roaster (e.g., 'Raleigh, NC', 'Floyd, VA')"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the roaster record was created"
},
"sourceRef": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the record this entity was sourced from"
}
}
},
"description": "A coffee roaster company"
}