This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/schema/metadata/app/emailTemplate.json
T
2023-11-07 19:20:07 +02:00

27 lines
910 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/app/emailTemplates.json",
"title": "app/databasePlatforms",
"description": "Email template definitions.",
"type": "object",
"properties": {
"placeholders": {
"description": "Placeholders.",
"additionalProperties": {
"description": "A placeholder.",
"type": "object",
"properties": {
"className": {
"type": "string",
"description": "A class. Should implement Espo\\Tools\\EmailTemplate\\Placeholder."
},
"order": {
"type": "integer",
"description": "An order position."
}
}
}
}
}
}