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/pdfDefs.json
T
Yuri Kuznetsov 0e37635373 schema
2023-05-25 17:18:55 +03:00

17 lines
593 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/pdfDefs.json",
"title": "pdfDefs",
"description": "PDF printing definitions for a scope.",
"type": "object",
"properties": {
"dataLoaderClassNameList": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of classes that loads additional data for PDF. Classes should implement the interface Espo\\Tools\\Pdf\\DataLoader. Use __APPEND__ for extending."
}
}
}