Files
espocrm/schema/metadata/app/templates.json
Yuri Kuznetsov 5023a58cc1 schema
2023-05-27 13:59:52 +03:00

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."
}
}
}
}