aboutsummaryrefslogtreecommitdiffstats
path: root/vid-ext-services-simulator/src/main/resources/preset_registration/changeManagement/workflow_parameters.json
blob: 0bc683c41c9897b36f6a8f6e8094c076114ac11e (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  "simulatorRequest": {
    "method": "GET",
    "path": "/so/workflow-parameters"
  },
  "simulatorResponse": {
    "responseCode": 200,
    "body": {
      "parameterDefinitions": [
        {
          "id": 1,
          "name": "general param 1",
          "required": true,
          "type": "STRING",
          "pattern": "[0-9]*"
        },
        {
          "id": 2,
          "name": "general param 2",
          "required": false,
          "type": "STRING",
          "pattern": "[-+]?[0-9]*\\.?[0-9]*"
        },
        {
          "id": 3,
          "name": "general param 3",
          "required": true,
          "type": "STRING",
          "pattern": "[a-zA-Z0-9]{7}"
        },
        {
          "id": 4,
          "name": "general param 4",
          "required": true,
          "type": "STRING",
          "pattern": "[0-9]{3}"
        }
      ]
    }
  }
}