OLD | NEW |
---|---|
(Empty) | |
1 [ | |
2 { | |
3 "namespace": "functions_as_parameters", | |
4 "types": [ | |
5 { | |
6 "id": "FunctionType", | |
7 "type": "object", | |
8 "properties": { | |
9 "event_callback": { | |
10 "type": "function", | |
11 "parameters": { } | |
12 } | |
13 } | |
14 }, | |
15 { | |
16 "id": "OptionalFunctionType", | |
17 "type": "object", | |
18 "properties": { | |
19 "event_callback": { | |
20 "type": "function", | |
21 "optional": true, | |
22 "parameters": { } | |
23 } | |
24 } | |
25 } | |
26 ] | |
27 } | |
28 ] | |
OLD | NEW |