Files

11 lines
348 B
Python
Raw Permalink Normal View History

2019-01-24 16:38:52 +00:00
post_letter_branding_schema = {
2022-04-08 17:05:59 +01:00
"$schema": "http://json-schema.org/draft-07/schema#",
2019-01-24 16:38:52 +00:00
"description": "POST schema for creating or updating a letter brand",
"type": "object",
"properties": {
"name": {"type": ["string", "null"]},
"filename": {"type": ["string", "null"]},
},
2022-04-12 18:13:20 +01:00
"required": ["name", "filename"]
2019-01-24 16:38:52 +00:00
}