-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjockrc-schema.json
More file actions
43 lines (43 loc) · 1.24 KB
/
jockrc-schema.json
File metadata and controls
43 lines (43 loc) · 1.24 KB
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
{
"$schema": "http://json-schema.org/draft-07/schema",
"properties": {
"folders": {
"description": "Folders and related config to run jock plugins on.",
"type": "object",
"minProperties": 1,
"additionalProperties": false,
"patternProperties": {
"^[_a-zA-Z0-9][a-zA-Z0-9_-]*$": {
"description": "Folder and related config to run jock plugins on.",
"type": "object",
"properties": {
"location": {
"description": "Location of the folder.",
"type": "string"
},
"plugins": {
"description": "Folder specific configuration for plugins.",
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^[_a-zA-Z0-9][a-zA-Z0-9_-]*$": {
"description": "Plugin configuration for parent folder.",
"type": "object",
"additionalProperties": true
}
}
}
},
"required": [
"location"
],
"additionalProperties": false
}
}
}
},
"required": [
"folders"
],
"additionalProperties": false
}