@bizone-ai/json-transform-utils 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +81 -0
  3. package/dist/ParseContext.d.ts +23 -0
  4. package/dist/ParseContext.d.ts.map +1 -0
  5. package/dist/ParseContext.js +69 -0
  6. package/dist/ParseContext.js.map +1 -0
  7. package/dist/__tests__/functions/functionsParser.test.d.ts +2 -0
  8. package/dist/__tests__/functions/functionsParser.test.d.ts.map +1 -0
  9. package/dist/__tests__/functions/functionsParser.test.js +787 -0
  10. package/dist/__tests__/functions/functionsParser.test.js.map +1 -0
  11. package/dist/__tests__/jsonpath/jsonpathJoin.test.d.ts +2 -0
  12. package/dist/__tests__/jsonpath/jsonpathJoin.test.d.ts.map +1 -0
  13. package/dist/__tests__/jsonpath/jsonpathJoin.test.js +27 -0
  14. package/dist/__tests__/jsonpath/jsonpathJoin.test.js.map +1 -0
  15. package/dist/__tests__/parse.test.d.ts +2 -0
  16. package/dist/__tests__/parse.test.d.ts.map +1 -0
  17. package/dist/__tests__/parse.test.js +22 -0
  18. package/dist/__tests__/parse.test.js.map +1 -0
  19. package/dist/__tests__/utils/convert.test.d.ts +2 -0
  20. package/dist/__tests__/utils/convert.test.d.ts.map +1 -0
  21. package/dist/__tests__/utils/convert.test.js +181 -0
  22. package/dist/__tests__/utils/convert.test.js.map +1 -0
  23. package/dist/functions/ContextVariablesSchemas.d.ts +3 -0
  24. package/dist/functions/ContextVariablesSchemas.d.ts.map +1 -0
  25. package/dist/functions/ContextVariablesSchemas.js +9 -0
  26. package/dist/functions/ContextVariablesSchemas.js.map +1 -0
  27. package/dist/functions/definitions.d.ts +4 -0
  28. package/dist/functions/definitions.d.ts.map +1 -0
  29. package/dist/functions/definitions.js +2090 -0
  30. package/dist/functions/definitions.js.map +1 -0
  31. package/dist/functions/examples/and.json +44 -0
  32. package/dist/functions/examples/at.json +156 -0
  33. package/dist/functions/examples/avg.json +78 -0
  34. package/dist/functions/examples/base64.json +368 -0
  35. package/dist/functions/examples/boolean.json +236 -0
  36. package/dist/functions/examples/coalesce.json +58 -0
  37. package/dist/functions/examples/concat.json +70 -0
  38. package/dist/functions/examples/contains.json +61 -0
  39. package/dist/functions/examples/csv.json +116 -0
  40. package/dist/functions/examples/csvparse.json +97 -0
  41. package/dist/functions/examples/date.json +389 -0
  42. package/dist/functions/examples/decimal.json +102 -0
  43. package/dist/functions/examples/digest.json +125 -0
  44. package/dist/functions/examples/distinct.json +142 -0
  45. package/dist/functions/examples/entries.json +88 -0
  46. package/dist/functions/examples/eval.json +72 -0
  47. package/dist/functions/examples/every.json +96 -0
  48. package/dist/functions/examples/filter.json +51 -0
  49. package/dist/functions/examples/find.json +51 -0
  50. package/dist/functions/examples/findindex.json +61 -0
  51. package/dist/functions/examples/flat.json +74 -0
  52. package/dist/functions/examples/flatten.json +76 -0
  53. package/dist/functions/examples/form.json +60 -0
  54. package/dist/functions/examples/formparse.json +62 -0
  55. package/dist/functions/examples/group.json +208 -0
  56. package/dist/functions/examples/if.json +294 -0
  57. package/dist/functions/examples/indexof.json +48 -0
  58. package/dist/functions/examples/is.json +512 -0
  59. package/dist/functions/examples/isnull.json +51 -0
  60. package/dist/functions/examples/join.json +221 -0
  61. package/dist/functions/examples/jsonparse.json +101 -0
  62. package/dist/functions/examples/jsonpatch.json +30 -0
  63. package/dist/functions/examples/jsonpath.json +62 -0
  64. package/dist/functions/examples/jsonpointer.json +77 -0
  65. package/dist/functions/examples/jwtparse.json +54 -0
  66. package/dist/functions/examples/length.json +202 -0
  67. package/dist/functions/examples/long.json +53 -0
  68. package/dist/functions/examples/lookup.json +223 -0
  69. package/dist/functions/examples/lower.json +24 -0
  70. package/dist/functions/examples/map.json +188 -0
  71. package/dist/functions/examples/match.json +62 -0
  72. package/dist/functions/examples/matchall.json +62 -0
  73. package/dist/functions/examples/math.json +1073 -0
  74. package/dist/functions/examples/max.json +104 -0
  75. package/dist/functions/examples/merge.json +173 -0
  76. package/dist/functions/examples/min.json +104 -0
  77. package/dist/functions/examples/normalize.json +142 -0
  78. package/dist/functions/examples/not.json +99 -0
  79. package/dist/functions/examples/numberformat.json +162 -0
  80. package/dist/functions/examples/numberparse.json +72 -0
  81. package/dist/functions/examples/object.json +148 -0
  82. package/dist/functions/examples/or.json +102 -0
  83. package/dist/functions/examples/pad.json +102 -0
  84. package/dist/functions/examples/partition.json +32 -0
  85. package/dist/functions/examples/range.json +188 -0
  86. package/dist/functions/examples/raw.json +58 -0
  87. package/dist/functions/examples/reduce.json +79 -0
  88. package/dist/functions/examples/repeat.json +59 -0
  89. package/dist/functions/examples/replace.json +92 -0
  90. package/dist/functions/examples/reverse.json +94 -0
  91. package/dist/functions/examples/slice.json +360 -0
  92. package/dist/functions/examples/some.json +96 -0
  93. package/dist/functions/examples/sort.json +353 -0
  94. package/dist/functions/examples/split.json +52 -0
  95. package/dist/functions/examples/string.json +95 -0
  96. package/dist/functions/examples/substring.json +82 -0
  97. package/dist/functions/examples/sum.json +108 -0
  98. package/dist/functions/examples/switch.json +78 -0
  99. package/dist/functions/examples/template.json +125 -0
  100. package/dist/functions/examples/test.json +82 -0
  101. package/dist/functions/examples/transform.json +58 -0
  102. package/dist/functions/examples/trim.json +44 -0
  103. package/dist/functions/examples/unflatten.json +97 -0
  104. package/dist/functions/examples/upper.json +24 -0
  105. package/dist/functions/examples/uriparse.json +52 -0
  106. package/dist/functions/examples/urldecode.json +42 -0
  107. package/dist/functions/examples/urlencode.json +43 -0
  108. package/dist/functions/examples/uuid.json +142 -0
  109. package/dist/functions/examples/value.json +87 -0
  110. package/dist/functions/examples/wrap.json +122 -0
  111. package/dist/functions/examples/xml.json +142 -0
  112. package/dist/functions/examples/xmlparse.json +161 -0
  113. package/dist/functions/examples/xor.json +166 -0
  114. package/dist/functions/examples/yaml.json +196 -0
  115. package/dist/functions/examples/yamlparse.json +150 -0
  116. package/dist/functions/examples.d.ts +4 -0
  117. package/dist/functions/examples.d.ts.map +1 -0
  118. package/dist/functions/examples.js +178 -0
  119. package/dist/functions/examples.js.map +1 -0
  120. package/dist/functions/functions.d.ts +3 -0
  121. package/dist/functions/functions.d.ts.map +1 -0
  122. package/dist/functions/functions.js +9 -0
  123. package/dist/functions/functions.js.map +1 -0
  124. package/dist/functions/functionsParser.d.ts +45 -0
  125. package/dist/functions/functionsParser.d.ts.map +1 -0
  126. package/dist/functions/functionsParser.js +207 -0
  127. package/dist/functions/functionsParser.js.map +1 -0
  128. package/dist/functions/parseDefinitions.d.ts +4 -0
  129. package/dist/functions/parseDefinitions.d.ts.map +1 -0
  130. package/dist/functions/parseDefinitions.js +56 -0
  131. package/dist/functions/parseDefinitions.js.map +1 -0
  132. package/dist/functions/types.d.ts +163 -0
  133. package/dist/functions/types.d.ts.map +1 -0
  134. package/dist/functions/types.js +93 -0
  135. package/dist/functions/types.js.map +1 -0
  136. package/dist/index.d.ts +14 -0
  137. package/dist/index.d.ts.map +1 -0
  138. package/dist/index.js +36 -0
  139. package/dist/index.js.map +1 -0
  140. package/dist/jsonpath/jsonpathFunctions.d.ts +4 -0
  141. package/dist/jsonpath/jsonpathFunctions.d.ts.map +1 -0
  142. package/dist/jsonpath/jsonpathFunctions.js +26 -0
  143. package/dist/jsonpath/jsonpathFunctions.js.map +1 -0
  144. package/dist/jsonpath/jsonpathJoin.d.ts +3 -0
  145. package/dist/jsonpath/jsonpathJoin.d.ts.map +1 -0
  146. package/dist/jsonpath/jsonpathJoin.js +15 -0
  147. package/dist/jsonpath/jsonpathJoin.js.map +1 -0
  148. package/dist/parse.d.ts +12 -0
  149. package/dist/parse.d.ts.map +1 -0
  150. package/dist/parse.js +522 -0
  151. package/dist/parse.js.map +1 -0
  152. package/dist/transformUtils.d.ts +40 -0
  153. package/dist/transformUtils.d.ts.map +1 -0
  154. package/dist/transformUtils.js +89 -0
  155. package/dist/transformUtils.js.map +1 -0
  156. package/dist/utils/convert.d.ts +3 -0
  157. package/dist/utils/convert.d.ts.map +1 -0
  158. package/dist/utils/convert.js +163 -0
  159. package/dist/utils/convert.js.map +1 -0
  160. package/package.json +44 -0
@@ -0,0 +1,221 @@
1
+ [
2
+ {
3
+ "name": "Object array input",
4
+ "given": {
5
+ "input": ["a", "b", "c"],
6
+ "definition": {
7
+ "$$join": "$"
8
+ }
9
+ },
10
+ "expect": {
11
+ "equal": "abc"
12
+ }
13
+ },
14
+ {
15
+ "name": "Object array with first element and B",
16
+ "given": {
17
+ "input": ["a", "b", "c"],
18
+ "definition": {
19
+ "$$join": ["$[0]", "B"]
20
+ }
21
+ },
22
+ "expect": {
23
+ "equal": "aB"
24
+ }
25
+ },
26
+ {
27
+ "name": "Object array with first element, nulls and B",
28
+ "given": {
29
+ "input": ["a", "b", "c"],
30
+ "definition": {
31
+ "$$join": ["$[0]", null, null, "B"],
32
+ "delimiter": ","
33
+ }
34
+ },
35
+ "expect": {
36
+ "equal": "a,B"
37
+ }
38
+ },
39
+ {
40
+ "name": "Object array with delimiter",
41
+ "given": {
42
+ "input": ["a", "b", "c"],
43
+ "definition": {
44
+ "$$join": "$",
45
+ "$$delimiter": ","
46
+ }
47
+ },
48
+ "expect": {
49
+ "equal": "a,b,c"
50
+ }
51
+ },
52
+ {
53
+ "name": "Object array with prefix",
54
+ "given": {
55
+ "input": ["hello", "world"],
56
+ "definition": {
57
+ "$$join": "$",
58
+ "delimiter": " ",
59
+ "prefix": "<"
60
+ }
61
+ },
62
+ "expect": {
63
+ "equal": "<hello world"
64
+ }
65
+ },
66
+ {
67
+ "name": "Object array with prefix and suffix",
68
+ "given": {
69
+ "input": ["hello", "world"],
70
+ "definition": {
71
+ "$$join": "$",
72
+ "delimiter": " ",
73
+ "prefix": "<",
74
+ "suffix": ">"
75
+ }
76
+ },
77
+ "expect": {
78
+ "equal": "<hello world>"
79
+ }
80
+ },
81
+ {
82
+ "name": "Inline array input",
83
+ "given": {
84
+ "input": ["hello", " ", "world"],
85
+ "definition": "$$join:$"
86
+ },
87
+ "expect": {
88
+ "equal": "hello world"
89
+ }
90
+ },
91
+ {
92
+ "name": "Inline array input with empty parenthesis",
93
+ "given": {
94
+ "input": ["hello", " ", "world"],
95
+ "definition": "$$join():$"
96
+ },
97
+ "expect": {
98
+ "equal": "hello world"
99
+ }
100
+ },
101
+ {
102
+ "name": "Inline array with different types",
103
+ "given": {
104
+ "input": ["hello", 5, true],
105
+ "definition": "$$join:$"
106
+ },
107
+ "expect": {
108
+ "equal": "hello5true"
109
+ }
110
+ },
111
+ {
112
+ "name": "Inline array input 2",
113
+ "given": {
114
+ "input": ["hello", " ", "world"],
115
+ "definition": "$$join:$"
116
+ },
117
+ "expect": {
118
+ "equal": "hello world"
119
+ }
120
+ },
121
+ {
122
+ "name": "Inline array input sliced",
123
+ "given": {
124
+ "input": ["hello", " ", "world"],
125
+ "definition": "$$join:$"
126
+ },
127
+ "expect": {
128
+ "equal": "hello world"
129
+ }
130
+ },
131
+ {
132
+ "name": "Inline array with nulls",
133
+ "given": {
134
+ "input": ["hello", null, "world"],
135
+ "definition": "$$join(' '):$"
136
+ },
137
+ "expect": {
138
+ "equal": "hello world"
139
+ }
140
+ },
141
+ {
142
+ "name": "Inline array with nulls and true parameter",
143
+ "given": {
144
+ "input": ["hello", null, "world"],
145
+ "definition": "$$join(' ',,,true):$"
146
+ },
147
+ "expect": {
148
+ "equal": "hello null world"
149
+ }
150
+ },
151
+ {
152
+ "name": "Inline array with comma delimiter",
153
+ "given": {
154
+ "input": ["hello", " ", "world"],
155
+ "definition": "$$join(,):$"
156
+ },
157
+ "expect": {
158
+ "equal": "hello world"
159
+ }
160
+ },
161
+ {
162
+ "name": "Inline array with colon delimiter",
163
+ "given": {
164
+ "input": ["hello", " ", "world"],
165
+ "definition": "$$join(:):$"
166
+ },
167
+ "expect": {
168
+ "equal": "hello: :world"
169
+ }
170
+ },
171
+ {
172
+ "name": "Inline array with comma string delimiter",
173
+ "given": {
174
+ "input": ["hello", " ", "world"],
175
+ "definition": "$$join(','):$"
176
+ },
177
+ "expect": {
178
+ "equal": "hello, ,world"
179
+ }
180
+ },
181
+ {
182
+ "name": "Inline array with single quote delimiter",
183
+ "given": {
184
+ "input": ["hello", " ", "world"],
185
+ "definition": "$$join('\\''):$"
186
+ },
187
+ "expect": {
188
+ "equal": "hello' 'world"
189
+ }
190
+ },
191
+ {
192
+ "name": "Inline array with second element as delimiter",
193
+ "given": {
194
+ "input": ["hello", " ", "world"],
195
+ "definition": "$$join('$[1]'):$"
196
+ },
197
+ "expect": {
198
+ "equal": "hello world"
199
+ }
200
+ },
201
+ {
202
+ "name": "Inline array with prefix",
203
+ "given": {
204
+ "input": ["hello", "world"],
205
+ "definition": "$$join( ,<):$"
206
+ },
207
+ "expect": {
208
+ "equal": "<hello world"
209
+ }
210
+ },
211
+ {
212
+ "name": "Inline array with prefix and suffix",
213
+ "given": {
214
+ "input": ["hello", "world"],
215
+ "definition": "$$join( ,<,>):$"
216
+ },
217
+ "expect": {
218
+ "equal": "<hello world>"
219
+ }
220
+ }
221
+ ]
@@ -0,0 +1,101 @@
1
+ [
2
+ {
3
+ "name": "From String",
4
+ "given": {
5
+ "input": "\"text\"",
6
+ "definition": "$$jsonparse:$"
7
+ },
8
+ "expect": {
9
+ "equal": "text"
10
+ }
11
+ },
12
+ {
13
+ "name": "From String with Empty Arguments",
14
+ "given": {
15
+ "input": "\"text\"",
16
+ "definition": "$$jsonparse():$"
17
+ },
18
+ "expect": {
19
+ "equal": "text"
20
+ }
21
+ },
22
+ {
23
+ "name": "From Boolean",
24
+ "given": {
25
+ "input": "true",
26
+ "definition": "$$jsonparse:$"
27
+ },
28
+ "expect": {
29
+ "equal": true
30
+ }
31
+ },
32
+ {
33
+ "name": "From Number",
34
+ "given": {
35
+ "input": "123",
36
+ "definition": "$$jsonparse:$"
37
+ },
38
+ "expect": {
39
+ "equal": 123
40
+ }
41
+ },
42
+ {
43
+ "name": "From Big Decimal",
44
+ "given": {
45
+ "input": "\"1234567890.098765432123456789\"",
46
+ "definition": "$$jsonparse:$"
47
+ },
48
+ "expect": {
49
+ "equal": "1234567890.098765432123456789"
50
+ }
51
+ },
52
+ {
53
+ "name": "From Big Decimal - Large Value",
54
+ "given": {
55
+ "input": "\"123456789123456789123456789123456789\"",
56
+ "definition": "$$jsonparse:$"
57
+ },
58
+ "expect": {
59
+ "equal": "123456789123456789123456789123456789"
60
+ }
61
+ },
62
+ {
63
+ "name": "From Object",
64
+ "given": {
65
+ "input": "{\"a\":\"b\"}",
66
+ "definition": "$$jsonparse:$"
67
+ },
68
+ "expect": {
69
+ "equal": {
70
+ "a": "b"
71
+ }
72
+ }
73
+ },
74
+ {
75
+ "name": "From Array",
76
+ "given": {
77
+ "input": "[\"a\",\"b\"]",
78
+ "definition": "$$jsonparse:$"
79
+ },
80
+ "expect": {
81
+ "equal": [
82
+ "a",
83
+ "b"
84
+ ]
85
+ }
86
+ },
87
+ {
88
+ "name": "Object From Object",
89
+ "given": {
90
+ "input": "{\"a\":\"b\"}",
91
+ "definition": {
92
+ "$$jsonparse": "$"
93
+ }
94
+ },
95
+ "expect": {
96
+ "equal": {
97
+ "a": "b"
98
+ }
99
+ }
100
+ }
101
+ ]
@@ -0,0 +1,30 @@
1
+ [
2
+ {
3
+ "name": "Add",
4
+ "given": {
5
+ "input": {
6
+ "a": {
7
+ "b": "c"
8
+ }
9
+ },
10
+ "definition": {
11
+ "$$jsonpatch": "$",
12
+ "ops": [
13
+ {
14
+ "op": "add",
15
+ "path": "/a/d",
16
+ "value": "e"
17
+ }
18
+ ]
19
+ }
20
+ },
21
+ "expect": {
22
+ "equal": {
23
+ "a": {
24
+ "b": "c",
25
+ "d": "e"
26
+ }
27
+ }
28
+ }
29
+ }
30
+ ]
@@ -0,0 +1,62 @@
1
+ [
2
+ {
3
+ "name": "Yo Dawg",
4
+ "given": {
5
+ "input": {
6
+ "path": "$.path"
7
+ },
8
+ "definition": "$$jsonpath($.path):$"
9
+ },
10
+ "expect": {
11
+ "equal": "$.path"
12
+ }
13
+ },
14
+ {
15
+ "name": "In Array",
16
+ "given": {
17
+ "input": {
18
+ "arr": [null, "boo"]
19
+ },
20
+ "definition": "$$jsonpath('\\\\$.arr[1]'):$"
21
+ },
22
+ "expect": {
23
+ "equal": "boo"
24
+ }
25
+ },
26
+ {
27
+ "name": "Multiple Results",
28
+ "given": {
29
+ "input": [
30
+ {
31
+ "id": 1,
32
+ "active": true
33
+ },
34
+ {
35
+ "id": 3,
36
+ "active": false
37
+ },
38
+ {
39
+ "id": 4,
40
+ "active": true
41
+ },
42
+ {
43
+ "id": 5,
44
+ "active": false
45
+ }
46
+ ],
47
+ "definition": "$$jsonpath('\\\\$[?(@.active == true)]'):$"
48
+ },
49
+ "expect": {
50
+ "equal": [
51
+ {
52
+ "id": 1,
53
+ "active": true
54
+ },
55
+ {
56
+ "id": 4,
57
+ "active": true
58
+ }
59
+ ]
60
+ }
61
+ }
62
+ ]
@@ -0,0 +1,77 @@
1
+ [
2
+ {
3
+ "name": "Get",
4
+ "given": {
5
+ "input": {
6
+ "b": [
7
+ "c",
8
+ "d",
9
+ {
10
+ "e": "Hello"
11
+ }
12
+ ]
13
+ },
14
+ "definition": "$$jsonpointer(GET,/b/2/e):$"
15
+ },
16
+ "expect": {
17
+ "equal": "Hello"
18
+ }
19
+ },
20
+ {
21
+ "name": "Get Yo Dawg",
22
+ "given": {
23
+ "input": {
24
+ "pointer": "/pointer"
25
+ },
26
+ "definition": "$$jsonpointer(get,$.pointer):$"
27
+ },
28
+ "expect": {
29
+ "equal": "/pointer"
30
+ }
31
+ },
32
+ {
33
+ "name": "Set",
34
+ "given": {
35
+ "input": {
36
+ "b": [
37
+ "c",
38
+ "d",
39
+ {
40
+ "e": "Hello"
41
+ }
42
+ ]
43
+ },
44
+ "definition": "$$jsonpointer(SET,/b,'$.b[2]'):$"
45
+ },
46
+ "expect": {
47
+ "equal": {
48
+ "b": {
49
+ "e": "Hello"
50
+ }
51
+ }
52
+ }
53
+ },
54
+ {
55
+ "name": "Remove",
56
+ "given": {
57
+ "input": {
58
+ "b": [
59
+ "c",
60
+ "d",
61
+ {
62
+ "e": "Hello"
63
+ }
64
+ ]
65
+ },
66
+ "definition": "$$jsonpointer(REMOVE,/b/2):$"
67
+ },
68
+ "expect": {
69
+ "equal": {
70
+ "b": [
71
+ "c",
72
+ "d"
73
+ ]
74
+ }
75
+ }
76
+ }
77
+ ]
@@ -0,0 +1,54 @@
1
+ [
2
+ {
3
+ "name": "Inline",
4
+ "given": {
5
+ "input": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
6
+ "definition": "$$jwtparse:$"
7
+ },
8
+ "expect": {
9
+ "equal": {
10
+ "sub": "1234567890",
11
+ "name": "John Doe",
12
+ "iat": 1516239022
13
+ }
14
+ }
15
+ },
16
+ {
17
+ "name": "Inline Invalid",
18
+ "given": {
19
+ "input": true,
20
+ "definition": "$$jwtparse:$"
21
+ },
22
+ "expect": {
23
+ "isNull": true
24
+ }
25
+ },
26
+ {
27
+ "name": "Object",
28
+ "given": {
29
+ "input": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
30
+ "definition": {
31
+ "$$jwtparse": "$"
32
+ }
33
+ },
34
+ "expect": {
35
+ "equal": {
36
+ "sub": "1234567890",
37
+ "name": "John Doe",
38
+ "iat": 1516239022
39
+ }
40
+ }
41
+ },
42
+ {
43
+ "name": "Object Invalid",
44
+ "given": {
45
+ "input": true,
46
+ "definition": {
47
+ "$$jwtparse": "$"
48
+ }
49
+ },
50
+ "expect": {
51
+ "isNull": true
52
+ }
53
+ }
54
+ ]