Files
onix/schemas/core/v1.1.0/on_rating.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

47 lines
973 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "on_rating",
"type": "object",
"properties": {
"context": {
"allOf": [
{
"$ref": "./definitions.json#/$defs/Context"
},
{
"type": "object",
"properties": {
"action": {
"enum": [
"on_rating"
]
}
},
"required": [
"action"
]
}
]
},
"message": {
"type": "object",
"properties": {
"feedback_form": {
"description": "A feedback form to allow the user to provide additional information on the rating provided",
"allOf": [
{
"$ref": "./definitions.json#/$defs/XInput"
}
]
}
}
},
"error": {
"$ref": "./definitions.json#/$defs/Error"
}
},
"required": [
"context",
"message"
]
}