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.
23 lines
676 B
23 lines
676 B
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "dashboard-descriptor.schema.json",
|
|
"title": "DashboardDescriptor",
|
|
"description": "Describes a dashboard configuration with groups and visualizations",
|
|
"type": "object",
|
|
"properties": {
|
|
"description": {
|
|
"type": "string",
|
|
"description": "Description text shown below the dashboard title"
|
|
},
|
|
"groups": {
|
|
"type": "array",
|
|
"description": "Dashboard groups, each bound to a single entity",
|
|
"items": {
|
|
"$ref": "dashboard-group-descriptor.schema.json"
|
|
},
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"required": ["groups"],
|
|
"additionalProperties": false
|
|
}
|
|
|