A recipe — invented on the spot to prove AT Search can index a lexicon it has never seen.
Record Key
any
Any valid record key
Properties
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
ingredients
array
of
string
Optional
Ingredient list
sourceUrl
string
uri
Optional
A valid URI.
steps
string
Required
How to make it
maxLength: 20000 bytestags
array
of
string
Optional
No description available.
title
string
Required
Name of the dish
maxLength: 200 bytesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"steps"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"steps": {
"type": "string",
"maxLength": 20000,
"description": "How to make it"
},
"title": {
"type": "string",
"maxLength": 200,
"description": "Name of the dish"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"sourceUrl": {
"type": "string",
"format": "uri"
},
"ingredients": {
"type": "array",
"items": {
"type": "string"
},
"description": "Ingredient list"
}
}
},
"description": "A recipe — invented on the spot to prove AT Search can index a lexicon it has never seen."
}