mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05:00
This relationship is via the `Organisation` now; we don’t use this column to fudge a relationship based on the user’s email address and the matching something in these columns.
11 lines
348 B
Python
11 lines
348 B
Python
post_letter_branding_schema = {
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"description": "POST schema for creating or updating a letter brand",
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {"type": ["string", "null"]},
|
|
"filename": {"type": ["string", "null"]},
|
|
},
|
|
"required": ("name", "filename")
|
|
}
|