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.
26 lines
984 B
26 lines
984 B
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "dashboard-number-container-descriptor.schema.json",
|
|
"title": "DashboardNumberContainerDescriptor",
|
|
"description": "A container that holds multiple number/KPI items, each with its own entity and aggregation.",
|
|
"markdownDescription": "AI guidance: use numberContainer for KPI tiles. Each item chooses its own entity, aggregation, optional filter, format, and color.",
|
|
"type": "object",
|
|
"properties": {
|
|
"items": {
|
|
"type": "array",
|
|
"description": "Number/KPI items within this container. Use 1-4 items for a readable dashboard row.",
|
|
"items": {
|
|
"$ref": "dashboard-number-item-descriptor.schema.json"
|
|
}
|
|
}
|
|
},
|
|
"required": ["items"],
|
|
"additionalProperties": false,
|
|
"examples": [
|
|
{
|
|
"items": [
|
|
{ "name": "total-events", "title": "Total Events", "entityName": "Acme.Events.Event", "aggregation": "count", "format": "number" }
|
|
]
|
|
}
|
|
]
|
|
}
|
|
|