Azure Synapse Analytics · Schema
Trigger
AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL
Properties
| Name | Type | Description |
|---|---|---|
| type | string | Trigger type. |
| description | string | |
| runtimeState | string | |
| annotations | array | |
| pipelines | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Trigger",
"title": "Trigger",
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"description": "Trigger type."
},
"description": {
"type": "string"
},
"runtimeState": {
"type": "string",
"readOnly": true,
"enum": [
"Started",
"Stopped",
"Disabled"
]
},
"annotations": {
"type": "array",
"items": {
"type": "string"
}
},
"pipelines": {
"type": "array",
"items": {
"type": "object",
"properties": {
"pipelineReference": {
"type": "object",
"properties": {
"referenceName": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"parameters": {
"type": "object",
"additionalProperties": true
}
}
}
}
}
}