DGXAI/driftcall
0
1{
2 "$comment": "SPDX-License-Identifier: Apache-2.0. Copyright 2026 DriftCall Team. Cab v2 after vehicle_class_expand / school_hours_mini_reject per DESIGN.md §5.2.",
3 "$id": "https://driftcall.dev/schemas/cab/v2.json",
4 "$schema": "https://json-schema.org/draft/2020-12/schema",
5 "additionalProperties": false,
6 "properties": {
7 "drop": {
8 "minLength": 1,
9 "type": "string"
10 },
11 "eta_min": {
12 "minimum": 0,
13 "type": "integer"
14 },
15 "fare_inr": {
16 "minimum": 0,
17 "type": "integer"
18 },
19 "pickup": {
20 "minLength": 1,
21 "type": "string"
22 },
23 "vehicle_class": {
24 "enum": ["mini", "sedan", "suv", "infant_seat_sedan"],
25 "type": "string"
26 }
27 },
28 "required": ["pickup", "drop", "vehicle_class", "fare_inr", "eta_min"],
29 "title": "Cab estimate (v2)",
30 "type": "object"
31}
32 