I noticed that it's possible to assign one trigger multiple times (with different parameters) to the same pipeline via json configuration, but then this brings to an inconsistency in the Azure Data Factory Studio.
Here's the trigger json configuration:
{
"name": "Partitario",
"properties": {
"annotations": [],
"runtimeState": "Started",
"pipelines": [
{
"pipelineReference": {
"referenceName": "PARTITARIO_PROCESS_FILE",
"type": "PipelineReference"
},
"parameters": {
"FileType": "KNA1"
}
},
{
"pipelineReference": {
"referenceName": "PARTITARIO_PROCESS_FILE",
"type": "PipelineReference"
},
"parameters": {
"FileType": "LFA1"
}
},
{
"pipelineReference": {
"referenceName": "PARTITARIO_PROCESS_FILE",
"type": "PipelineReference"
},
"parameters": {
"FileType": "BSID"
}
},
{
"pipelineReference": {
"referenceName": "PARTITARIO_PROCESS_FILE",
"type": "PipelineReference"
},
"parameters": {
"FileType": "BSAD"
}
},
{
"pipelineReference": {
"referenceName": "PARTITARIO_PROCESS_FILE",
"type": "PipelineReference"
},
"parameters": {
"FileType": "BSIK"
}
},
{
"pipelineReference": {
"referenceName": "PARTITARIO_PROCESS_FILE",
"type": "PipelineReference"
},
"parameters": {
"FileType": "BSAK"
}
}
],
"type": "ScheduleTrigger",
"typeProperties": {
"recurrence": {
"frequency": "Day",
"interval": 1,
"startTime": "2021-11-25T16:52:00",
"timeZone": "W. Europe Standard Time",
"schedule": {
"minutes": [
0
],
"hours": [
1
]
}
}
}
}
}
But in the ADF Studio I just have this:

I think that at least it should mention the multiple assignment of the trigger (as we see in the trigger section here below)

It would be nice to have a detail about parameters here too:
