ui-dashboard-composer
Build KPI dashboards with charts and real-time data from SAP systems to visualize business metrics and monitor performance.
Instructions
Creates comprehensive KPI dashboards with charts and real-time data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dashboardTitle | Yes | Title for the dashboard | |
layout | No | Dashboard layout style | |
widgets | Yes | Dashboard widget configurations |
Input Schema (JSON Schema)
{
"properties": {
"dashboardTitle": {
"description": "Title for the dashboard",
"type": "string"
},
"layout": {
"description": "Dashboard layout style",
"enum": [
"grid",
"vertical",
"horizontal"
],
"type": "string"
},
"widgets": {
"description": "Dashboard widget configurations",
"items": {
"additionalProperties": false,
"properties": {
"config": {
"additionalProperties": true,
"properties": {},
"type": "object"
},
"entityType": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"enum": [
"chart",
"metric",
"table",
"gauge"
],
"type": "string"
}
},
"required": [
"type",
"title",
"entityType"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"dashboardTitle",
"widgets"
],
"type": "object"
}