mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-10 01:56:03 -04:00
22 lines
607 B
Python
22 lines
607 B
Python
|
|
post_create_organisation_schema = {
|
||
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||
|
|
"description": "POST organisation schema",
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"name": {"type": "string"},
|
||
|
|
"active": {"type": ["boolean", "null"]}
|
||
|
|
},
|
||
|
|
"required": ["name"]
|
||
|
|
}
|
||
|
|
|
||
|
|
post_update_organisation_schema = {
|
||
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||
|
|
"description": "POST organisation schema",
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"name": {"type": ["string", "null"]},
|
||
|
|
"active": {"type": ["boolean", "null"]}
|
||
|
|
},
|
||
|
|
"required": []
|
||
|
|
}
|