{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "NewOrderRequest", "description": "NewOrderRequest schema from Lunchbox Core API", "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/core-new-order-request-schema.json", "type": "object", "properties": { "customer_id": { "type": "integer", "example": 1234 }, "store_id": { "type": "string", "example": "123456" }, "service_type_id": { "type": "integer", "example": 1234 }, "is_group_order": { "type": "boolean", "example": true } } }