KeyFigure

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
KeyFigureName string Technical name of the key figure
KeyFigureDescription string Description of the key figure
AggregationType string Aggregation behavior
DataType string Data type of the key figure
UnitOfMeasure string Unit of measure or currency
View JSON Schema on GitHub

JSON Schema

sap-bi-keyfigure-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KeyFigure",
  "title": "KeyFigure",
  "type": "object",
  "properties": {
    "KeyFigureName": {
      "type": "string",
      "description": "Technical name of the key figure"
    },
    "KeyFigureDescription": {
      "type": "string",
      "description": "Description of the key figure"
    },
    "AggregationType": {
      "type": "string",
      "enum": [
        "SUM",
        "MIN",
        "MAX",
        "AVG",
        "COUNT",
        "NOP"
      ],
      "description": "Aggregation behavior"
    },
    "DataType": {
      "type": "string",
      "description": "Data type of the key figure"
    },
    "UnitOfMeasure": {
      "type": "string",
      "description": "Unit of measure or currency"
    }
  }
}