-
-
Notifications
You must be signed in to change notification settings - Fork 299
Expand file tree
/
Copy pathmetadata.schema.json
More file actions
47 lines (47 loc) · 1.52 KB
/
metadata.schema.json
File metadata and controls
47 lines (47 loc) · 1.52 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
44
45
46
47
{
"$schema": "https://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/TRaSH-/Guides/master/metadata.schema.json",
"type": "object",
"additionalProperties": false,
"properties": {
"$schema": { "type": "string" },
"json_paths": {
"type": "object",
"additionalProperties": false,
"properties": {
"radarr": { "$ref": "#/$defs/radarr" },
"sonarr": { "$ref": "#/$defs/sonarr" }
}
}
},
"$defs": {
"paths_object": {
"type": "array",
"items": { "type": "string" }
},
"radarr": {
"type": "object",
"additionalProperties": false,
"properties": {
"custom_formats": { "$ref": "#/$defs/paths_object" },
"qualities": { "$ref": "#/$defs/paths_object" },
"naming": { "$ref": "#/$defs/paths_object" },
"quality_profiles": { "$ref": "#/$defs/paths_object" },
"custom_format_groups": { "$ref": "#/$defs/paths_object" },
"quality_profile_groups": { "$ref": "#/$defs/paths_object" }
}
},
"sonarr": {
"type": "object",
"additionalProperties": false,
"properties": {
"custom_formats": { "$ref": "#/$defs/paths_object" },
"qualities": { "$ref": "#/$defs/paths_object" },
"naming": { "$ref": "#/$defs/paths_object" },
"quality_profiles": { "$ref": "#/$defs/paths_object" },
"custom_format_groups": { "$ref": "#/$defs/paths_object" },
"quality_profile_groups": { "$ref": "#/$defs/paths_object" }
}
}
}
}