mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05:00
25 lines
831 B
Python
25 lines
831 B
Python
add_service_email_reply_to_request = {
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"description": "POST service email reply to address",
|
|
"type": "object",
|
|
"title": "Add new email reply to address for service",
|
|
"properties": {
|
|
"email_address": {"type": "string", "format": "email_address"},
|
|
"is_default": {"type": "boolean"}
|
|
},
|
|
"required": ["email_address", "is_default"]
|
|
}
|
|
|
|
|
|
add_service_letter_contact_block_request = {
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"description": "POST service letter contact block",
|
|
"type": "object",
|
|
"title": "Add new letter contact block for service",
|
|
"properties": {
|
|
"contact_block": {"type": "string"},
|
|
"is_default": {"type": "boolean"}
|
|
},
|
|
"required": ["contact_block", "is_default"]
|
|
}
|