mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 09:15:34 +00:00
31 lines
759 B
JSON
31 lines
759 B
JSON
{
|
|
"$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"]
|
|
}
|
|
} |