26 lines
458 B
JSON
26 lines
458 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "search",
|
|
"type": "object",
|
|
"properties": {
|
|
"context": {
|
|
"allOf": [
|
|
{
|
|
"$ref": "./definitions.json#/$defs/Context"
|
|
}
|
|
]
|
|
},
|
|
"message": {
|
|
"properties": {
|
|
"intent": {
|
|
"$ref": "./definitions.json#/$defs/Intent"
|
|
}
|
|
},
|
|
"type": "object"
|
|
}
|
|
},
|
|
"required": [
|
|
"message",
|
|
"context"
|
|
]
|
|
} |