Qlik Sense Enterprise · Schema
DataConnectionCreate
AnalyticsBusiness IntelligenceData VisualizationEnterpriseREST API
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Data connection name |
| connectionstring | string | Connection string for the data source |
| type | string | Connection provider type |
| logOn | integer | Logon mode |
| architecture | integer | Connection architecture |
| username | string | Username for connection authentication |
| password | string | Password for connection authentication |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DataConnectionCreate",
"title": "DataConnectionCreate",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Data connection name"
},
"connectionstring": {
"type": "string",
"description": "Connection string for the data source"
},
"type": {
"type": "string",
"description": "Connection provider type"
},
"logOn": {
"type": "integer",
"description": "Logon mode"
},
"architecture": {
"type": "integer",
"description": "Connection architecture"
},
"username": {
"type": "string",
"description": "Username for connection authentication"
},
"password": {
"type": "string",
"description": "Password for connection authentication"
}
},
"required": [
"name",
"connectionstring",
"type"
]
}