47 lines
924 B
JSON
47 lines
924 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://ondc.org/trv10/2.0.0/track",
|
|
"type": "object",
|
|
"properties": {
|
|
"context": {
|
|
"allOf": [
|
|
{
|
|
"$ref": "../schema/components.json#/$defs/Context"
|
|
},
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"action": {
|
|
"enum": [
|
|
"track"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"action"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"message": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"order_id": {
|
|
"$ref": "../schema/components.json#/$defs/Order"
|
|
},
|
|
"callback_url": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
}
|
|
},
|
|
"required": [
|
|
"order_id"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"message",
|
|
"context"
|
|
]
|
|
} |