Files
espocrm/schema/metadata/app/client.json
Yuri Kuznetsov 19a8535dbe favicon png
2024-05-17 11:23:28 +03:00

82 lines
3.1 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/app/client.json",
"title": "app/client",
"description": "General definitions for the front-end client.",
"type": "object",
"properties": {
"scriptList": {
"type": "array",
"description": "JS files to include on the HTML page. Use __APPEND__ to append custom values w/o removing existing.",
"items": {
"anyOf": [
{"type": "string"},
{"enum": ["__APPEND__"]}
]
}
},
"developerModeScriptList": {
"type": "array",
"description": "JS files to include on the HTML page in the developer mode. Use __APPEND__ to append custom values w/o removing existing.",
"items": {
"anyOf": [
{"type": "string"},
{"enum": ["__APPEND__"]}
]
}
},
"linkList": {
"type": "array",
"description": "Link tags to include on the HTML page. Use __APPEND__ to append custom values w/o removing existing.",
"items": {
"anyOf": [
{
"type": "object",
"properties": {
"href": {
"type": "string",
"description": "An URL."
},
"as": {
"type": "string",
"description": "An AS attribute value."
},
"type": {
"type": "string",
"description": "A TYPE attribute value."
},
"noTimestamp": {
"type": "boolean",
"description": "Disables cache busting."
},
"crossorigin": {
"type": "boolean",
"description": "Sets the crossorigin attribute."
}
}
},
{"enum": ["__APPEND__"]}
]
}
},
"cssList": {
"type": "array",
"description": "CSS files to include on the HTML page. Use __APPEND__ to append custom values w/o removing existing.",
"items": {
"anyOf": [
{"type": "string"},
{"enum": ["__APPEND__"]}
]
}
},
"favicon": {
"type": "string",
"description": "A favicon. SVG or PNG. The default value: client/img/favicon.svg."
},
"faviconAlternate": {
"type": "string",
"description": "An ico 16px favicon. The default value: client/img/favicon.ico."
}
}
}