2017-07-10 13:45:48 +01:00
|
|
|
post_create_organisation_schema = {
|
2017-07-07 10:00:38 +01:00
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
|
"description": "POST schema for getting organisation",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
2017-07-10 13:45:48 +01:00
|
|
|
"colour": {"type": ["string", "null"]},
|
|
|
|
|
"name": {"type": ["string", "null"]},
|
|
|
|
|
"logo": {"type": ["string", "null"]}
|
2017-07-07 10:00:38 +01:00
|
|
|
},
|
2017-09-20 11:03:48 +01:00
|
|
|
"required": []
|
2017-07-07 10:00:38 +01:00
|
|
|
}
|
2017-07-10 13:45:48 +01:00
|
|
|
|
|
|
|
|
post_update_organisation_schema = {
|
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
|
"description": "POST schema for getting organisation",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"colour": {"type": ["string", "null"]},
|
|
|
|
|
"name": {"type": ["string", "null"]},
|
|
|
|
|
"logo": {"type": ["string", "null"]}
|
|
|
|
|
},
|
|
|
|
|
"required": []
|
|
|
|
|
}
|