SAP Business Intelligence · Schema
SAP BI Data Source
A data source connection used across SAP BI products to connect to source systems, databases, cloud services, and other data repositories for analytics and reporting.
AnalyticsBusiness IntelligenceData VisualizationReportingSAP
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Data source unique identifier |
| name | string | Data source name |
| description | string | Data source description |
| type | string | Connection type indicating the source system |
| status | string | Current connection status |
| host | string | Hostname or endpoint URL of the data source |
| port | integer | Connection port number |
| database | string | Database or schema name |
| authenticationMethod | string | Authentication method used for the connection |
| sslEnabled | boolean | Whether SSL/TLS encryption is enabled |
| spaceId | string | Datasphere space containing this connection |
| createdBy | string | User who created the data source |
| createdTime | string | When the data source was created |
| modifiedTime | string | When the data source was last modified |
| lastTestedTime | string | When the connection was last tested |
| lastTestResult | string | Result of the last connection test |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.sap.com/schemas/sap-bi/data-source.json",
"title": "SAP BI Data Source",
"description": "A data source connection used across SAP BI products to connect to source systems, databases, cloud services, and other data repositories for analytics and reporting.",
"type": "object",
"required": ["name", "type"],
"properties": {
"id": {
"type": "string",
"description": "Data source unique identifier"
},
"name": {
"type": "string",
"description": "Data source name",
"minLength": 1,
"maxLength": 256
},
"description": {
"type": "string",
"description": "Data source description"
},
"type": {
"type": "string",
"enum": [
"HANA",
"S4HANA",
"SAP_BW",
"SAP_BW4HANA",
"ABAP_CDS",
"OData",
"Cloud_Data_Integration",
"Google_BigQuery",
"Microsoft_SQL_Server",
"Amazon_S3",
"JDBC",
"File"
],
"description": "Connection type indicating the source system"
},
"status": {
"type": "string",
"enum": ["Active", "Inactive", "Error"],
"description": "Current connection status"
},
"host": {
"type": "string",
"description": "Hostname or endpoint URL of the data source"
},
"port": {
"type": "integer",
"minimum": 1,
"maximum": 65535,
"description": "Connection port number"
},
"database": {
"type": "string",
"description": "Database or schema name"
},
"authenticationMethod": {
"type": "string",
"enum": ["BasicAuth", "OAuth2", "SAML", "Kerberos", "Certificate", "APIKey"],
"description": "Authentication method used for the connection"
},
"sslEnabled": {
"type": "boolean",
"description": "Whether SSL/TLS encryption is enabled"
},
"spaceId": {
"type": "string",
"description": "Datasphere space containing this connection"
},
"createdBy": {
"type": "string",
"description": "User who created the data source"
},
"createdTime": {
"type": "string",
"format": "date-time",
"description": "When the data source was created"
},
"modifiedTime": {
"type": "string",
"format": "date-time",
"description": "When the data source was last modified"
},
"lastTestedTime": {
"type": "string",
"format": "date-time",
"description": "When the connection was last tested"
},
"lastTestResult": {
"type": "string",
"enum": ["Success", "Failed"],
"description": "Result of the last connection test"
}
}
}