UNPKG

889 BJavaScriptView Raw
1module.exports = {
2 validation: {
3 type: 'object',
4 optional: true,
5 strict: true,
6 properties: {
7 actions: {
8 type: 'array',
9 items: {
10 type: 'object',
11 strict: true,
12 properties: {
13 namespace: {
14 type: 'string',
15 optional: true
16 },
17 id: {
18 type: 'string'
19 },
20 arguments: {
21 type: 'object',
22 optional: true
23 }
24 }
25 }
26 },
27 arguments: {
28 type: 'object',
29 optional: true
30 }
31 }
32 },
33 sanitization: {
34 properties: {
35 actions: {
36 items: {
37 properties: {
38 namespace: {},
39 id: {},
40 arguments: {}
41 }
42 }
43 },
44 arguments: {}
45 }
46 }
47};
\No newline at end of file