saumilyajj's picture
Upload folder using huggingface_hub
b43d8da verified
raw
history blame contribute delete
809 Bytes
{
"$comment": "SPDX-License-Identifier: Apache-2.0. Copyright 2026 DriftCall Team. Cab v1 baseline per DESIGN.md §5.2.",
"$id": "https://driftcall.dev/schemas/cab/v1.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"],
"type": "string"
}
},
"required": ["pickup", "drop", "vehicle_class", "fare_inr", "eta_min"],
"title": "Cab estimate (v1)",
"type": "object"
}