CreateModelRequest

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
name string Name for the new model
description string Description for the model
type string Model type
View JSON Schema on GitHub

JSON Schema

sap-bi-createmodelrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateModelRequest",
  "title": "CreateModelRequest",
  "type": "object",
  "required": [
    "name",
    "type"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new model"
    },
    "description": {
      "type": "string",
      "description": "Description for the model"
    },
    "type": {
      "type": "string",
      "enum": [
        "Planning",
        "Analytic",
        "Dataset"
      ],
      "description": "Model type"
    }
  }
}