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

40 lines
1.3 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/dashlets.json",
"title": "dashlets",
"description": "Front-end definitions for a scope.",
"type": "object",
"properties": {
"view": {
"type": "string",
"description": "A front-end view class for a dashlet."
},
"aclScope": {
"type": "string",
"description": "A scope access to which is required to have access to the dashlet.",
},
"accessDataList": {
"$ref": "./components/accessDataList.json",
"description": "Frontend access rules."
},
"options": {
"type": "object",
"description": "Dashlet options definitions.",
"properties": {
"fields": {
"$ref": "./entityDefs.json#/properties/fields"
},
"defaults": {
"type": "object",
"additionalProperties": true,
"description": "Default options."
},
"layout": {
"$ref": "./../layouts/detail.json",
"description": "A layout."
}
}
}
}
}