-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx.json
More file actions
350 lines (350 loc) · 9.32 KB
/
x.json
File metadata and controls
350 lines (350 loc) · 9.32 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
{
"name": "json",
"description": "JSON for Chiχ",
"version": "0.0.3",
"repository": {
"type": "git",
"url": "https://github.com/nodule/json.git"
},
"dependencies": {
"defiant": "github:hbi99/defiant.js",
"json-gate": "0.x.x",
"json-query": "^2.1.1",
"json2xml": "0.1.x",
"jsonpath-plus": "^0.x.x",
"xml2json": "0.x.x"
},
"nodes": [
{
"name": "createSchema",
"ns": "json",
"title": "JSON Schema",
"description": "Instantiate a JSON Schema",
"phrases": {
"active": "Creating JSON Schema"
},
"ports": {
"input": {
"in": {
"type": "object",
"title": "JSON Schema",
"format": "json",
"required": true
}
},
"output": {
"error": {
"type": "object",
"title": "Error"
},
"out": {
"type": "object",
"title": "JSON Schema"
}
}
},
"dependencies": {
"npm": {
"json-gate": "0.x.x"
}
},
"fn": "output.out = $.write('in', json_gate.createSchema($.in));\n"
},
{
"name": "parse",
"ns": "json",
"title": "JSON Parse",
"description": "Parses a string into a javascript object",
"expose": [
"JSON"
],
"async": true,
"phrases": {
"active": "Parsing JSON string"
},
"ports": {
"input": {
"in": {
"type": "string",
"title": "JSON String",
"required": true
},
"reviver": {
"type": "function",
"title": "prescribes how the value originally produced by parsing is transformed, before being returned",
"default": null
}
},
"output": {
"out": {
"type": "object",
"title": "The Javascript Object"
}
}
},
"fn": "/* output.out = JSON.parse($.in, $.reviver); */\n\non.input.in = function () {\n output({out: $.write('in', JSON.parse($.in, state.reviver))});\n};\n\non.input.reviver = function () {\n state.reviver = $.reviver;\n};\n"
},
{
"name": "path",
"ns": "json",
"title": "JSON Path",
"description": "JSON-Path takes a specially formatted path statement and applies it to an object graph in order to select results. The results are returned as an array of data that matches the path.",
"async": true,
"phrases": {
"active": "Performing JSON Path"
},
"ports": {
"input": {
"in": {
"type": "object",
"title": "Input JSON",
"description": "Any JSON document",
"required": true
},
"path": {
"type": "string",
"title": "Path",
"description": "",
"required": true
}
},
"output": {
"out": {
"type": "array",
"title": "Selection Output",
"description": ""
}
}
},
"dependencies": {
"npm": {
"jsonpath-plus": "latest"
}
},
"fn": "on.input.in = function () {\n output({\n out: $.write('in', jsonpath_plus({\n json: $.in,\n path: $.path\n }))\n });\n};\n\n"
},
{
"name": "query",
"ns": "json",
"title": "JSON Query",
"description": "Retrieves values from JSON objects",
"async": true,
"phrases": {
"active": "Querying JSON"
},
"ports": {
"input": {
"in": {
"type": "object",
"title": "JSON",
"required": true
},
"query": {
"type": "string",
"title": "Query"
}
},
"output": {
"out": {
"type": "object",
"title": "Object"
}
}
},
"dependencies": {
"npm": {
"json-query": "latest"
}
},
"fn": "on.input.in = function () {\n output({\n out: $.write('in', json_query($.query, {data: $.in}).value)\n });\n};\n"
},
{
"name": "stringify",
"ns": "json",
"title": "JSON Stringify",
"description": "Stringify a javascript object",
"expose": [
"JSON"
],
"async": true,
"phrases": {
"active": "JSON Stringifying Object"
},
"ports": {
"input": {
"in": {
"type": "any",
"title": "Input Object",
"async": true,
"required": true
},
"replacer": {
"type": "any",
"title": "Replacer",
"description": "A function that alters the behavior of the stringification process, or an array of String and Number objects that serve as a whitelist for selecting the properties of the value object to be included in the JSON string. If this value is null or not provided, all properties of the object are included in the resulting JSON string.",
"default": null
},
"space": {
"type": "number",
"title": "Indentation length",
"default": 0
}
},
"output": {
"out": {
"type": "string",
"title": "The JSON string"
}
}
},
"fn": "on.input.in = function() {\n output({\n out: $.write('in', JSON.stringify($.in, $.replacer, $.space))\n });\n};\n"
},
{
"name": "toxml",
"ns": "json",
"title": "JSON To XML",
"description": "Converts JSON to Simple XML",
"phrases": {
"active": "Parsing JSON string"
},
"ports": {
"input": {
"json": {
"type": "object",
"title": "JSON",
"required": true
},
"root": {
"type": "string",
"title": "Root Element",
"default": ""
},
"header": {
"type": "boolean",
"title": "Add Header?",
"default": true
}
},
"output": {
"out": {
"type": "object",
"title": "The Javascript Object"
},
"error": {
"type": "object",
"title": "Error"
}
}
},
"dependencies": {
"npm": {
"json2xml": "0.1.x"
}
},
"fn": "var obj = {};\nif ($.root) {\n obj[$.root] = $.json;\n} else {\n obj = $.json;\n}\n\noutput.out = $.create(json2xml(obj, {header: $.header}));\n\n/*\non.input.root = function() {\n state.root = $.root;\n};\n\non.input.header = function() {\n state.header = $.header;\n};\n\non.input.json = function() {\n\n var obj = {};\n if(state.root) {\n obj[state.root] = $.json;\n } else {\n obj = $.json;\n }\n\n output({\n out: json2xml($.json, { header: state.header })\n });\n\n};\n*/\n"
},
{
"name": "validate",
"ns": "json",
"async": true,
"title": "Validate JSON",
"description": "Validates JSON agains JSON Schema",
"phrases": {
"active": "Validating JSON"
},
"ports": {
"input": {
"in": {
"type": "object",
"async": true,
"title": "JSON",
"format": "json",
"required": true
},
"schema": {
"type": "object",
"title": "JSON Gate Schema"
}
},
"output": {
"error": {
"type": "object",
"title": "Error"
},
"out": {
"type": "object",
"title": "The Validated Object"
}
}
},
"fn": "on.input.in = function () {\n try {\n $.schema.validate($.in)\n output({out: $.get('in')});\n } catch(err) {\n output({ error: $.create(err) });\n }\n};\n"
},
{
"type": "flow",
"nodes": [
{
"id": "Template",
"title": "Template",
"ns": "template",
"name": "string"
},
{
"id": "JSONPath",
"title": "JSONPath",
"ns": "json",
"name": "path"
}
],
"links": [
{
"source": {
"id": "Template",
"port": "out"
},
"target": {
"id": "JSONPath",
"port": "path"
},
"metadata": {
"title": "Template out -> path JSONPath"
}
}
],
"title": "JSON Path Template",
"description": "JSON Path using a templated path",
"ports": {
"input": {
"template": {
"nodeId": "Template",
"title": "Template",
"name": "template"
},
"vars": {
"nodeId": "Template",
"title": "Vars",
"name": "in"
},
"in": {
"nodeId": "JSONPath",
"title": "In",
"name": "in"
}
},
"output": {
"out": {
"nodeId": "JSONPath",
"title": "Out",
"name": "out"
}
}
},
"providers": {
"@": {
"url": "https://api.chix.io/v1/nodes/{ns}/{name}"
}
},
"ns": "json",
"name": "tpath"
}
]
}