-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.json
53 lines (53 loc) · 909 Bytes
/
node.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
{
"type":"object",
"title":"Chiχ Nodes",
"properties":{
"title": {
"type":"string",
"required": false
},
"description": {
"type":"string",
"required": false
},
"name": {
"type":"string",
"required": true
},
"ns": {
"type":"string",
"required": true
},
"require": {
"type":"object",
"required": false
},
"expose": {
"type":"array",
"required": false
},
"fn": {
"type":"string",
"required": false
},
"ports": {
"type":"object",
"required": true,
"properties":{
"input": {
"type":"object"
},
"output": {
"type":"object"
},
"event": {
"type":"object"
}
}
},
"type": {
"enum":["node","flow","provider","data"],
"required": false
}
}
}