forked from ivov/nodemaker
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tester.json
66 lines (65 loc) · 1.88 KB
/
tester.json
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
{
"metaParameters": {
"serviceName": "Nodemaker News",
"authType": "OAuth2",
"nodeColor": "#ffffff",
"apiUrl": "http://api.com"
},
"mainParameters": {
"Article": [
{
"name": "Get",
"description": "Get a hacker news article",
"endpoint": "/items/:articleId",
"requestMethod": "GET",
"fields": [
{
"name": "Return All",
"description": "Whether to return all results or only up to a limit",
"type": "boolean",
"default": true
},
{
"name": "Limit",
"description": "Limit of Nodemaker News articles to be returned for the query",
"type": "number",
"default": 20,
"extraDisplayRestriction": {
"Return All": true
},
"numericalLimits": {
"minLimit": 5,
"maxLimit": 50
}
},
{
"name": "Additional Fields",
"description": "",
"type": "collection",
"default": {},
"options": [
{
"name": "Tags",
"description": "The keyword for filtering the results of the query",
"type": "multiOptions",
"default": "feature1",
"options": [
{
"name": "Feature1",
"description": "Some description"
},
{
"name": "Feature2",
"description": "Some other description"
}
]
}
]
}
]
}
]
},
"nodeGenerationType": "Simple",
"nodeType": "Regular"
}