A recipe record stored in the user's PDS repository.
tid
Timestamp-based ID
Properties
categories
array
of
string
Optional
Recipe categories for filtering and display.
maxLength: 10 itemscookTimeMinutes
integer
Optional
No description available.
minimum: 0createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
Short description of the recipe.
maxLength: 10000 bytesembedding
bytes
Optional
Packed float32 vector embedding for semantic search.
maxLength: 8192image
blob
Optional
Header image for the recipe.
maxSize: 1.0 MBingredients
array
of
ref
#ingredient
Required
Structured ingredients list with metric and imperial measurements.
minLength: 1 itemsinstructions
array
of
ref
#instruction
Required
Ordered preparation steps.
minLength: 1 itemsnotes
string
Optional
No description available.
maxLength: 10000 bytesnutrition
string
Optional
No description available.
maxLength: 5000 bytesprepTimeMinutes
integer
Optional
No description available.
minimum: 0servings
integer
Optional
No description available.
minimum: 1source
string
Optional
Human-readable source name.
maxLength: 256 bytestitle
string
Required
Title of the recipe.
maxLength: 512 bytesmaxGraphemes: 128 graphemestotalTimeMinutes
integer
Optional
No description available.
minimum: 0updatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
url
string
uri
Optional
Original source URL of the recipe.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"ingredients",
"instructions",
"createdAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Original source URL of the recipe."
},
"image": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "Header image for the recipe."
},
"notes": {
"type": "string",
"maxLength": 10000
},
"title": {
"type": "string",
"maxLength": 512,
"description": "Title of the recipe.",
"maxGraphemes": 128
},
"source": {
"type": "string",
"maxLength": 256,
"description": "Human-readable source name."
},
"servings": {
"type": "integer",
"minimum": 1
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"embedding": {
"type": "bytes",
"maxLength": 8192,
"description": "Packed float32 vector embedding for semantic search."
},
"nutrition": {
"type": "string",
"maxLength": 5000
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"categories": {
"type": "array",
"items": {
"type": "string",
"maxLength": 128
},
"maxLength": 10,
"description": "Recipe categories for filtering and display."
},
"description": {
"type": "string",
"maxLength": 10000,
"description": "Short description of the recipe."
},
"ingredients": {
"type": "array",
"items": {
"ref": "#ingredient",
"type": "ref"
},
"minLength": 1,
"description": "Structured ingredients list with metric and imperial measurements."
},
"instructions": {
"type": "array",
"items": {
"ref": "#instruction",
"type": "ref"
},
"minLength": 1,
"description": "Ordered preparation steps."
},
"cookTimeMinutes": {
"type": "integer",
"minimum": 0
},
"prepTimeMinutes": {
"type": "integer",
"minimum": 0
},
"totalTimeMinutes": {
"type": "integer",
"minimum": 0
}
}
},
"description": "A recipe record stored in the user's PDS repository."
}