Files
espocrm/schema/metadata/dashlets.json
Arkadiy Asuratov 9e3f834b04 minor fixes to schema (#2918)
* fix(schema): remove comma

* fix(schema): add comma
2023-12-08 17:20:03 +02:00

39 lines
1.2 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": "./clientDefs.json#/definitions/accessDataList"
},
"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."
}
}
}
}
}