mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-22 16:31:15 -05:00
11 lines
349 B
Python
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"]
|
||
|
|
}
|