43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://ondc.org/trv10/2.0.0/cancel",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"$ref": "../beckn_base/api/io/cancel.json#"
|
|
},
|
|
{
|
|
"$ref": "https://beckn.org/schema/cancel#"
|
|
},
|
|
{
|
|
"$ref": "./init.json#/allOf/2"
|
|
},
|
|
{
|
|
"properties": {
|
|
"message": {
|
|
"type": "object",
|
|
"properties": {
|
|
"order_id": {
|
|
"type": "string"
|
|
},
|
|
"descriptor": {
|
|
"type": "object",
|
|
"properties": {
|
|
"code": {
|
|
"type": "string",
|
|
"enum": ["SOFT_CANCEL", "CONFIRM_CANCEL"]
|
|
}
|
|
},
|
|
"required": ["code"]
|
|
},
|
|
"cancellation_reason_id": {
|
|
"type": "string",
|
|
"pattern": "^[0-9]+$"
|
|
}
|
|
},
|
|
"required": ["order_id", "descriptor", "cancellation_reason_id"]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |