A canonical cheese type record
tid
Timestamp-based ID
Properties
agedWeeks
integer
Optional
Typical aging time in weeks
minimum: 0aka
array
of
string
Optional
Also-known-as names for the cheese
maxLength: 20 itemsavailableMonths
array
of
integer
Optional
Months the cheese is available (1-12) if seasonal
maxLength: 12 itemscreatedAt
string
datetime
Required
Timestamp when the type record was created
description
string
Optional
General description of the cheese
maxLength: 5000 byteslink
string
uri
Optional
Optional reference link about the cheese
maxLength: 500 bytesmilk
string
Optional
Milk source (e.g., cow, goat, sheep, buffalo, mixed)
maxLength: 100 bytesname
string
Required
Name of the cheese
maxLength: 200 bytesorigin
ref
#origin
Optional
Geographic and producer origin of the cheese
pasteurized
boolean
Optional
Whether the cheese is made from pasteurized milk
photo
blob
Optional
A photo of the cheese
maxSize: 10.0 MBrind
string
Optional
Rind type (e.g., washed, bloomy, natural)
maxLength: 100 bytesseasonal
boolean
Optional
Whether the cheese has restricted seasonal availability
servingTempCelsius
ref
#temperatureRange
Optional
Recommended serving temperature range in Celsius
source
ref
#source
Optional
Where the canonical type information was sourced from
tastingNotes
string
Optional
Tasting notes and flavor profile
maxLength: 2000 bytestexture
string
Optional
Texture classification
maxLength: 50 bytessoft, semi-soft, semi-hard, hard, blueView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"aka": {
"type": "array",
"items": {
"type": "string",
"maxLength": 200
},
"maxLength": 20,
"description": "Also-known-as names for the cheese"
},
"link": {
"type": "string",
"format": "uri",
"maxLength": 500,
"description": "Optional reference link about the cheese"
},
"milk": {
"type": "string",
"maxLength": 100,
"description": "Milk source (e.g., cow, goat, sheep, buffalo, mixed)"
},
"name": {
"type": "string",
"maxLength": 200,
"description": "Name of the cheese"
},
"rind": {
"type": "string",
"maxLength": 100,
"description": "Rind type (e.g., washed, bloomy, natural)"
},
"photo": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 10000000,
"description": "A photo of the cheese"
},
"origin": {
"ref": "#origin",
"type": "ref",
"description": "Geographic and producer origin of the cheese"
},
"source": {
"ref": "#source",
"type": "ref",
"description": "Where the canonical type information was sourced from"
},
"texture": {
"type": "string",
"maxLength": 50,
"description": "Texture classification",
"knownValues": [
"soft",
"semi-soft",
"semi-hard",
"hard",
"blue"
]
},
"seasonal": {
"type": "boolean",
"description": "Whether the cheese has restricted seasonal availability"
},
"agedWeeks": {
"type": "integer",
"minimum": 0,
"description": "Typical aging time in weeks"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the type record was created"
},
"description": {
"type": "string",
"maxLength": 5000,
"description": "General description of the cheese"
},
"pasteurized": {
"type": "boolean",
"description": "Whether the cheese is made from pasteurized milk"
},
"tastingNotes": {
"type": "string",
"maxLength": 2000,
"description": "Tasting notes and flavor profile"
},
"availableMonths": {
"type": "array",
"items": {
"type": "integer",
"maximum": 12,
"minimum": 1
},
"maxLength": 12,
"description": "Months the cheese is available (1-12) if seasonal"
},
"servingTempCelsius": {
"ref": "#temperatureRange",
"type": "ref",
"description": "Recommended serving temperature range in Celsius"
}
}
},
"description": "A canonical cheese type record"
}