Widget

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
id string Widget unique identifier
type string Type of widget
name string Widget display name
modelId string Associated model ID
View JSON Schema on GitHub

JSON Schema

sap-bi-widget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Widget",
  "title": "Widget",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Widget unique identifier"
    },
    "type": {
      "type": "string",
      "enum": [
        "Chart",
        "Table",
        "Filter",
        "Text",
        "Image",
        "Shape"
      ],
      "description": "Type of widget"
    },
    "name": {
      "type": "string",
      "description": "Widget display name"
    },
    "modelId": {
      "type": "string",
      "description": "Associated model ID"
    }
  }
}