Files
notifications-api/app/service/service_broadcast_settings_schema.py
2021-02-16 10:31:01 +00:00

11 lines
349 B
Python

service_broadcast_settings_schema = {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Set a services broadcast settings",
"type": "object",
"title": "Set a services broadcast settings",
"properties": {
"broadcast_channel": {"enum": ["test", "severe"]}
},
"required": ["broadcast_channel"]
}