Skip to content

Commit ea0953d

Browse files
chore(schema): Auto-generate schema
1 parent 71ba866 commit ea0953d

2 files changed

Lines changed: 62 additions & 0 deletions

File tree

website/client/src/public/schemas/1.16.1/schema.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,37 @@
1010
"properties": {
1111
"maxFileSize": {
1212
"type": "number"
13+
},
14+
"processors": {
15+
"type": "array",
16+
"items": {
17+
"type": "object",
18+
"properties": {
19+
"pattern": {
20+
"type": "string"
21+
},
22+
"command": {
23+
"type": "string"
24+
},
25+
"timeout": {
26+
"type": "integer",
27+
"minimum": 1,
28+
"maximum": 2147483647
29+
},
30+
"onError": {
31+
"enum": [
32+
"fail",
33+
"skip"
34+
],
35+
"type": "string"
36+
}
37+
},
38+
"required": [
39+
"pattern",
40+
"command"
41+
],
42+
"additionalProperties": false
43+
}
1344
}
1445
},
1546
"additionalProperties": false

website/client/src/public/schemas/latest/schema.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,37 @@
1010
"properties": {
1111
"maxFileSize": {
1212
"type": "number"
13+
},
14+
"processors": {
15+
"type": "array",
16+
"items": {
17+
"type": "object",
18+
"properties": {
19+
"pattern": {
20+
"type": "string"
21+
},
22+
"command": {
23+
"type": "string"
24+
},
25+
"timeout": {
26+
"type": "integer",
27+
"minimum": 1,
28+
"maximum": 2147483647
29+
},
30+
"onError": {
31+
"enum": [
32+
"fail",
33+
"skip"
34+
],
35+
"type": "string"
36+
}
37+
},
38+
"required": [
39+
"pattern",
40+
"command"
41+
],
42+
"additionalProperties": false
43+
}
1344
}
1445
},
1546
"additionalProperties": false

0 commit comments

Comments
 (0)