Page

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
id string Page unique identifier
name string Page name
widgets array Widgets on the page
View JSON Schema on GitHub

JSON Schema

sap-bi-page-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Page",
  "title": "Page",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Page unique identifier"
    },
    "name": {
      "type": "string",
      "description": "Page name"
    },
    "widgets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Widget"
      },
      "description": "Widgets on the page"
    }
  }
}