Connection

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
id string Connection unique identifier
name string Connection name
description string Connection description
type string Connection type
status string Connection status
createdTime string When the connection was created
View JSON Schema on GitHub

JSON Schema

sap-bi-connection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Connection",
  "title": "Connection",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Connection unique identifier"
    },
    "name": {
      "type": "string",
      "description": "Connection name"
    },
    "description": {
      "type": "string",
      "description": "Connection description"
    },
    "type": {
      "type": "string",
      "enum": [
        "HANA",
        "S4HANA",
        "SAP_BW",
        "SAP_BW4HANA",
        "ABAP_CDS",
        "OData",
        "Cloud_Data_Integration",
        "Google_BigQuery",
        "Microsoft_SQL_Server",
        "Amazon_S3"
      ],
      "description": "Connection type"
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Inactive",
        "Error"
      ],
      "description": "Connection status"
    },
    "createdTime": {
      "type": "string",
      "format": "date-time",
      "description": "When the connection was created"
    }
  }
}