Files
onix/schemas/core/v1.1.0/support.json
Eric 118d4c61a4
Some checks failed
Terraform Deploy to GCP / Terraform Plan Only (push) Has been cancelled
Initial Digitribe ONIX setup
2026-04-13 23:39:49 -04:00

39 lines
710 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "support",
"type": "object",
"properties": {
"context": {
"allOf": [
{
"$ref": "./definitions.json#/$defs/Context"
},
{
"type": "object",
"properties": {
"action": {
"enum": [
"support"
]
}
},
"required": [
"action"
]
}
]
},
"message": {
"type": "object",
"properties": {
"support": {
"$ref": "./definitions.json#/$defs/Support"
}
}
}
},
"required": [
"message",
"context"
]
}