Files
onix/plugins/schema/ondc_trv10/on_track.json
AshwiniK-protean 113aadbb0a add new schemas
2025-02-27 10:23:49 +05:30

46 lines
919 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://ondc.org/trv10/2.0.0/on_track",
"type": "object",
"properties": {
"context": {
"allOf": [
{
"$ref": "../schema/components.json#/$defs/Context"
},
{
"type": "object",
"properties": {
"action": {
"enum": [
"on_track"
]
}
},
"required": [
"action"
]
}
]
},
"message": {
"type": "object",
"additionalProperties": false,
"properties": {
"tracking": {
"$ref": "../schema/components.json#/$defs/Tracking"
}
},
"required": [
"tracking"
]
},
"error": {
"$ref": "../schema/components.json#/$defs/Error"
}
},
"required": [
"context",
"message"
]
}