aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-bdd/resources/json/versionWithDuplicateInputName.json
blob: 978d9c09c4c63d2a6fef62aebbed1e33f0b0fec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  "description": "version with with duplicate input name",
  "inputs": [
    {
      "mandatory": true,
      "name": "in1",
      "type": "STRING"
    },
    {
      "mandatory": true,
      "name": "in1",
      "type": "INTEGER"
    }
  ],
  "outputs": [
    {
      "mandatory": true,
      "name": "out1",
      "type": "TIMESTAMP"
    },
    {
      "mandatory": true,
      "name": "out2",
      "type": "BOOLEAN"
    }
  ]
}