| { | |
| "$comment": "SPDX-License-Identifier: Apache-2.0. Copyright 2026 DriftCall Team. Restaurant v2 after min_order_bump per DESIGN.md §5.3.", | |
| "$id": "https://driftcall.dev/schemas/restaurant/v2.json", | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "additionalProperties": false, | |
| "properties": { | |
| "eta_min": { | |
| "minimum": 0, | |
| "type": "integer" | |
| }, | |
| "items": { | |
| "items": { | |
| "additionalProperties": false, | |
| "properties": { | |
| "dish_id": {"minLength": 1, "type": "string"}, | |
| "price": {"minimum": 0, "type": "integer"}, | |
| "qty": {"minimum": 1, "type": "integer"} | |
| }, | |
| "required": ["dish_id", "qty", "price"], | |
| "type": "object" | |
| }, | |
| "minItems": 1, | |
| "type": "array" | |
| }, | |
| "min_order_inr": { | |
| "const": 299, | |
| "type": "integer" | |
| }, | |
| "restaurant_id": { | |
| "minLength": 1, | |
| "type": "string" | |
| }, | |
| "total": { | |
| "minimum": 0, | |
| "type": "integer" | |
| } | |
| }, | |
| "required": ["restaurant_id", "items", "total", "eta_min", "min_order_inr"], | |
| "title": "Restaurant order (v2)", | |
| "type": "object" | |
| } | |