File size: 882 Bytes
b43d8da | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | {
"$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.",
"$id": "https://driftcall.dev/schemas/cab/v2.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"drop": {
"minLength": 1,
"type": "string"
},
"eta_min": {
"minimum": 0,
"type": "integer"
},
"fare_inr": {
"minimum": 0,
"type": "integer"
},
"pickup": {
"minLength": 1,
"type": "string"
},
"vehicle_class": {
"enum": ["mini", "sedan", "suv", "infant_seat_sedan"],
"type": "string"
}
},
"required": ["pickup", "drop", "vehicle_class", "fare_inr", "eta_min"],
"title": "Cab estimate (v2)",
"type": "object"
}
|