mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 16:55:19 +00:00
28 lines
575 B
JSON
28 lines
575 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",
|
|
"pattern": "^[A-Z][a-z ]*$"
|
|
},
|
|
"meal": {
|
|
"type": "string",
|
|
"description": "The meal ordered",
|
|
"pattern": "^[A-Z][a-z ]*$"
|
|
}
|
|
},
|
|
"required": [
|
|
"table_number"
|
|
]
|
|
}
|
|
}
|
|
{} |