diff options
Diffstat (limited to 'sdc-workflow-bdd/resources/json/versionWithDuplicateInputName.json')
-rw-r--r-- | sdc-workflow-bdd/resources/json/versionWithDuplicateInputName.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sdc-workflow-bdd/resources/json/versionWithDuplicateInputName.json b/sdc-workflow-bdd/resources/json/versionWithDuplicateInputName.json new file mode 100644 index 00000000..978d9c09 --- /dev/null +++ b/sdc-workflow-bdd/resources/json/versionWithDuplicateInputName.json @@ -0,0 +1,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" + } + ] +}
\ No newline at end of file |