I'm trying to create an advanced schedule trigger, following this: https://docs.microsoft.com/en-us/azure/data-factory/concepts-pipeline-execution-triggers#schedule-property
I Created a very simple pipeline:
Created a schedule (each 1 minute) trigger
Opened the JSON for that trigger and modified it to:
{
"name": "test",
"properties": {
"runtimeState": "Started",
"pipelines": [
{
"pipelineReference": {
"referenceName": "ForEachMetadata",
"type": "PipelineReference"
}
}
],
"type": "ScheduleTrigger",
"typeProperties": {
"recurrence": {
"frequency": "Minute",
"interval": 1,
"startTime": "2019-02-25T16:23:00.000Z",
"timeZone": "UTC",
"schedule": {
"minutes": [
0,
30
],
"hours": [
10,
11
],
"weekDays": [
"monday",
"tuesday",
"wednesday",
"thursday",
"friday"
]
}
}
}
}
}
What am I doing wrong?