Files
notifications-api/app/service/service_broadcast_settings_schema.py

13 lines
555 B
Python
Raw Normal View History

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": ["operator", "test", "severe", "government"]},
2021-02-09 14:47:36 +00:00
"service_mode": {"enum": ["training", "live"]},
"provider_restriction": {"enum": ["three", "o2", "vodafone", "ee", "all"]}
},
2021-02-09 14:47:36 +00:00
"required": ["broadcast_channel", "service_mode", "provider_restriction"]
}