-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtpath.js
More file actions
67 lines (67 loc) · 1.19 KB
/
tpath.js
File metadata and controls
67 lines (67 loc) · 1.19 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
module.exports = {
"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"
}