mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
40 lines
1.4 KiB
JSON
40 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://www.espocrm.com/schema/metadata/app/pdfEngines.json",
|
|
"title": "app/pdfEngines",
|
|
"description": "PDF printing engines.",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"description": "An engine name.",
|
|
"properties": {
|
|
"implementationClassNameMap": {
|
|
"type": "object",
|
|
"description": "Implementations.",
|
|
"properties": {
|
|
"entity": {
|
|
"type": "string",
|
|
"description": "An entity printer. Should implement Espo\\Tools\\Pdf\\EntityPrinter."
|
|
},
|
|
"collection": {
|
|
"type": "string",
|
|
"description": "An entity printer. Should implement Espo\\Tools\\Pdf\\CollectionPrinter."
|
|
}
|
|
}
|
|
},
|
|
"fontFaceList": {
|
|
"type": "array",
|
|
"description": "A list of fonts available for the engine.",
|
|
"items": {
|
|
"anyOf": [
|
|
{"const": "__APPEND__"},
|
|
{
|
|
"type": "string"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|