mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 06:35:23 +00:00
27 lines
501 B
JSON
27 lines
501 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"order": {
|
|
"type": "object",
|
|
"properties": {
|
|
"table_number": {
|
|
"type": "integer",
|
|
"description": "The table number of the order",
|
|
"minimum": 1
|
|
},
|
|
"drink": {
|
|
"type": "string",
|
|
"description": "The drink ordered"
|
|
},
|
|
"meal": {
|
|
"type": "string",
|
|
"description": "The meal ordered"
|
|
}
|
|
},
|
|
"required": [
|
|
"table_number"
|
|
]
|
|
}
|
|
}
|
|
}
|