mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
34 lines
1.1 KiB
JSON
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."
|
|
}
|
|
}
|
|
}
|