Azure Synapse Analytics · Schema
LinkedService
AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL
Properties
| Name | Type | Description |
|---|---|---|
| type | string | Type of linked service. |
| description | string | |
| connectVia | object | |
| parameters | object | |
| annotations | array | |
| typeProperties | object | Type specific properties of the linked service. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LinkedService",
"title": "LinkedService",
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"description": "Type of linked service."
},
"description": {
"type": "string"
},
"connectVia": {
"type": "object",
"properties": {
"referenceName": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"parameters": {
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"annotations": {
"type": "array",
"items": {
"type": "string"
}
},
"typeProperties": {
"type": "object",
"description": "Type specific properties of the linked service."
}
}
}