aboutsummaryrefslogtreecommitdiffstats
path: root/aai-traversal/src/test/resources/maputils/testcases/TestCase2.json
blob: 9b8a1e390e06987ab1d2de25c44628824c8ab5f9 (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
{
  "input": {
    "myImage": {
      "imageId": "test-imageId-1",
      "imageName": "test-image-name",
      "imageList": [
        {
          "imageListName": "testListName",
          "imageListId": "testListId",
          "imageArray": [
            [
              {
                "imageNestedArrayElement": "value"
              }
            ]
          ]
        }
      ]
    }
  },
  "output": {
    "my-image": {
      "image-id": "test-imageId-1",
      "image-name": "test-image-name",
      "image-list": [
        {
          "image-list-name": "testListName",
          "image-list-id": "testListId",
          "image-array": [
            [
              {
                "image-nested-array-element": "value"
              }
            ]
          ]
        }
      ]
    }
  }
}