Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix lint errors in Synapse trigger.json #19660

Merged
merged 1 commit into from
Jul 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"type": "array",
"items": {
"type": "object"
}
},
"x-ms-identifiers": []
}
},
"additionalProperties": {
Expand Down Expand Up @@ -67,7 +68,10 @@
"items": {
"$ref": "../artifacts.json#/definitions/TriggerPipelineReference"
},
"description": "Pipelines that need to be started."
"description": "Pipelines that need to be started.",
"x-ms-identifiers": [
"/pipelineReference/referenceName"
]
}
}
},
Expand Down Expand Up @@ -202,7 +206,8 @@
"items": {
"$ref": "#/definitions/RecurrenceScheduleOccurrence"
},
"description": "The monthly occurrences."
"description": "The monthly occurrences.",
"x-ms-identifiers": []
}
},
"additionalProperties": {
Expand Down Expand Up @@ -284,6 +289,7 @@
},
"BlobEventsTrigger": {
"description": "Trigger that runs every time a Blob event occurs.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/MultiplePipelineTrigger"
Expand Down Expand Up @@ -342,6 +348,7 @@
},
"CustomEventsTrigger": {
"description": "Trigger that runs every time a custom event is received.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/MultiplePipelineTrigger"
Expand All @@ -365,7 +372,8 @@
"type": "array",
"items": {
"type": "object"
}
},
"x-ms-identifiers": []
},
"scope": {
"description": "The ARM resource ID of the Azure Event Grid Topic.",
Expand All @@ -384,6 +392,7 @@
},
"TumblingWindowTrigger": {
"description": "Trigger that schedules pipeline runs for all fixed time interval windows from a start time without gaps and also supports backfill scenarios (when start time is in the past).",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Trigger"
Expand Down