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

26 lines
501 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://ondc.org/trv10/2.0.0/search",
"type": "object",
"properties": {
"context": {
"allOf": [
{
"$ref": "../schema/components.json#/$defs/Context"
}
]
},
"message": {
"properties": {
"intent": {
"$ref": "../schema/components.json#/$defs/Intent"
}
},
"type": "object"
}
},
"required": [
"message",
"context"
]
}