blob: 1f7a79439129c3715012ac4c894a1aac4e80c0fc (
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
|
{
"input": {
"myImage": {
"imageId": "test-imageId-1",
"imageName": "test-image-name",
"imageList": [
{
"imageListName": "testListName",
"imageListId": "testListId",
"imageListNumber": 200,
"imageListBoolean": true,
"imageListNull": null
}
]
}
},
"output": {
"my-image": {
"image-id": "test-imageId-1",
"image-name": "test-image-name",
"image-list": [
{
"image-list-name": "testListName",
"image-list-id": "testListId",
"image-list-number": 200,
"image-list-boolean": true,
"image-list-null": null
}
]
}
}
}
|