who_need_help/deploy/helm/who-need-help/values.schema.json
SimpleTest e08916ef09
Some checks are pending
Quality / full-local-gates (push) Waiting to run
Propagate UniSender privacy flags to deployments
2026-07-21 16:00:41 +03:00

37 lines
798 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"app": {
"type": "object",
"properties": {
"erlangPortLimit": {
"type": "integer",
"minimum": 1024,
"maximum": 134217727
},
"emailDeliveryProvider": {
"type": "string",
"enum": [
"smtp",
"unisender_go"
]
},
"unisenderGoBaseUrl": {
"type": "string",
"pattern": "^https://"
},
"unisenderGoSkipUnsubscribe": {
"type": "boolean"
}
},
"required": [
"erlangPortLimit",
"emailDeliveryProvider",
"unisenderGoBaseUrl",
"unisenderGoSkipUnsubscribe"
]
}
}
}