-
Notifications
You must be signed in to change notification settings - Fork 0
/
node-gen-config.json
executable file
·136 lines (136 loc) · 5.33 KB
/
node-gen-config.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
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
{
"packageName": "node-red-contrib-test01-node",
"nodeType": "test01-node",
"nodeName": "Test01Name",
"category": "test",
"color": "#d7d7a0",
"icon": "arrow.png",
"paletteLabel__enUS":"test01 node",
"paletteLabel__ja":"テスト01ノード",
"labelStyle":"node_label_italic",
"input":{
"tabLabel__enUS":"Input1",
"tabLabel__ja":"入力1",
"params":[
{
"name":"inputParam1",
"label__enUS":"Input Parameter1",
"label__ja":"入力パラメータ1",
"description__enUS":"Input Parameter1 description.",
"description__ja":"入力パラメータ1の説明。",
"placeholder__enUS":"Input Parameter1",
"placeholder__ja":"入力パラメータ1",
"types":["str", "env", "msg"],
"defaultType":"msg",
"defaultValue":"payload1",
"required":true
},
{
"name":"inputParam2",
"label__enUS":"Input Parameter2",
"label__ja":"入力パラメータ2",
"description__enUS":"Input Parameter2 description.",
"description__ja":"入力パラメータ2の説明。",
"placeholder__enUS":"Input Parameter2",
"placeholder__ja":"入力パラメータ2",
"types":["str", "env", "msg"],
"defaultType":"msg",
"defaultValue":"payload2",
"required":true
}
]
},
"outputs":[
{
"tabLabel__enUS":"Output1",
"tabLabel__ja":"出力1",
"outputLabel__enUS":"Output1",
"outputLabel__ja":"出力1",
"params":[
{
"name":"output1",
"label__enUS":"Output Parameter1",
"label__ja":"出力パラメータ1",
"description__enUS":"Output Parameter1 description.",
"description__ja":"出力パラメータ1の説明。",
"placeholder__enUS":"Output Parameter1",
"placeholder__ja":"出力パラメータ1",
"types":["msg", "flow"],
"defaultType":"msg",
"defaultValue":"payload1_1",
"required":true
}
]
},
{
"tabLabel__enUS":"Output2",
"tabLabel__ja":"出力2",
"outputLabel__enUS":"Output2",
"outputLabel__ja":"出力2",
"params":[
{
"name":"output1",
"label__enUS":"Output Parameter1",
"label__ja":"出力パラメータ1",
"description__enUS":"Output Parameter1 description.",
"description__ja":"出力パラメータ1の説明。",
"placeholder__enUS":"Output Parameter1",
"placeholder__ja":"出力パラメータ1",
"types":["msg", "flow"],
"defaultType":"msg",
"defaultValue":"payload2_1",
"required":true
},
{
"name":"output2",
"label__enUS":"Output Parameter2",
"label__ja":"出力パラメータ2",
"description__enUS":"Output Parameter2 description.",
"description__ja":"出力パラメータ2の説明。",
"placeholder__enUS":"Output Parameter2",
"placeholder__ja":"出力パラメータ2",
"types":["msg", "flow"],
"defaultType":"msg",
"defaultValue":"payload2_2",
"required":true
}
]
}
],
"config":{
"nodeType":"test01-config",
"nodeName":"Test01Config",
"defaultName":"test01config",
"configLabel__enUS":"test01 config",
"configLabel__ja":"テスト01設定",
"labelStyle":"node_label_italic",
"settings":[
{
"name":"config1",
"label__enUS":"config1",
"label__ja":"設定1",
"description__enUS":"config1 description.",
"description__ja":"設定1の説明。",
"types":["str", "env", "flow"],
"defaultType":"env",
"defaultValue":"test1env",
"placeholder__enUS":"test01 config",
"placeholder__ja":"テスト01設定",
"required": true
},
{
"name":"config2",
"label__enUS":"config2",
"label__ja":"設定2",
"description__enUS":"config2 description.",
"description__ja":"設定2の説明。",
"types":["str", "env", "flow"],
"defaultType":"env",
"defaultValue":"test2env",
"placeholder__enUS":"test02 config",
"placeholder__ja":"テスト02設定",
"required": true
}
]
}
}