31 lines
759 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the favorite food",
"minLength": 1
},
"cuisine": {
"type": "string",
"description": "Cuisine type of the food (optional)",
"nullable": true
},
"description": {
"type": "string",
"description": "Optional description of the food",
"nullable": true
},
"rating": {
"type": "number",
"description": "Rating of the food on a scale from 1 to 5 (optional)",
"minimum": 1,
"maximum": 5,
"nullable": true
}
},
"required": ["name"]
}
}