Files
espocrm/schema/metadata/pdfDefs.json
Yuri Kuznetsov c2591357ab pdfa
2025-06-23 09:55:43 +03:00

34 lines
1.1 KiB
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": {
"anyOf": [
{"const": "__APPEND__"},
{"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."
},
"pdfA": {
"type": "boolean",
"description": "Use PDF/A. Since v9.2."
},
"attachmentProviderClassNameList": {
"type": "array",
"items": {
"anyOf": [
{"const": "__APPEND__"},
{"type": "string"}
]
},
"description": "Attachment providers. Should implement `Espo\\Tools\\Pdf\\AttachmentProvider`. Since v9.2."
}
}
}