User: dan@sartography.com clicked save for examples/2-in-depth/2-4-messages/waiter/order-schema.json

This commit is contained in:
sartography-automated-committer 2024-02-21 04:21:34 +00:00
parent 42832aac19
commit c18076b881

View File

@ -1,22 +1,22 @@
{
"type": "object",
"order": {
"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 ]*$"
}
"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",