mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
54 lines
1.5 KiB
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "dashboard-group-descriptor.schema.json",
|
|
"title": "DashboardGroupDescriptor",
|
|
"description": "A dashboard group bound to a single entity, containing visualizations",
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"description": "Unique identifier for this group within the dashboard",
|
|
"minLength": 1
|
|
},
|
|
"title": {
|
|
"type": "string",
|
|
"description": "Display title for the group section"
|
|
},
|
|
"entityName": {
|
|
"type": "string",
|
|
"description": "Full entity name this group sources data from",
|
|
"minLength": 1
|
|
},
|
|
"filter": {
|
|
"$ref": "dashboard-filter-descriptor.schema.json"
|
|
},
|
|
"userFilters": {
|
|
"type": "array",
|
|
"description": "Properties exposed as dynamic filters for end users",
|
|
"items": {
|
|
"$ref": "dashboard-user-filter-descriptor.schema.json"
|
|
}
|
|
},
|
|
"appearance": {
|
|
"type": "object",
|
|
"properties": {
|
|
"useBackground": {
|
|
"type": "boolean",
|
|
"description": "Show light background color for this group",
|
|
"default": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"visualizations": {
|
|
"type": "array",
|
|
"description": "Visualizations within this group",
|
|
"items": {
|
|
"$ref": "dashboard-visualization-descriptor.schema.json"
|
|
},
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"required": ["name", "entityName", "visualizations"],
|
|
"additionalProperties": false
|
|
}
|
|
|