mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
36 lines
1.4 KiB
JSON
36 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://www.espocrm.com/schema/metadata/app/smsProviders.json",
|
|
"title": "app/smsProviders",
|
|
"description": "Templates (available at Administration > Templates). Usually used for system emails.",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"description": "A template name. Should start with the lower case letter.",
|
|
"properties": {
|
|
"scopeList": {
|
|
"type": "array",
|
|
"description": "A list of scopes (entity types) for which the template is available.",
|
|
"items": {
|
|
"anyOf": [
|
|
{"const": "__APPEND__"},
|
|
{"type": "string"}
|
|
]
|
|
}
|
|
},
|
|
"scope": {
|
|
"type": "string",
|
|
"description": "A scope (entity types) for which the template is available. Use it if it's needed only for one entity type."
|
|
},
|
|
"scopeListConfigParam": {
|
|
"type": "string",
|
|
"description": "A config parameter defining for which entity types the template is available."
|
|
},
|
|
"module": {
|
|
"type": "string",
|
|
"description": "A module name."
|
|
}
|
|
}
|
|
}
|
|
}
|