CreateConnectionRequest

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
name string Connection name
description string Connection description
type string Connection type
properties object Connection-specific properties (host, port, credentials, etc.)
View JSON Schema on GitHub

JSON Schema

sap-bi-createconnectionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateConnectionRequest",
  "title": "CreateConnectionRequest",
  "type": "object",
  "required": [
    "name",
    "type"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Connection name"
    },
    "description": {
      "type": "string",
      "description": "Connection description"
    },
    "type": {
      "type": "string",
      "description": "Connection type"
    },
    "properties": {
      "type": "object",
      "description": "Connection-specific properties (host, port, credentials, etc.)"
    }
  }
}