aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/data/custom-audio-list-schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bg/data/custom-audio-list-schema.json')
-rw-r--r--ext/bg/data/custom-audio-list-schema.json33
1 files changed, 0 insertions, 33 deletions
diff --git a/ext/bg/data/custom-audio-list-schema.json b/ext/bg/data/custom-audio-list-schema.json
deleted file mode 100644
index 2cb3ca78..00000000
--- a/ext/bg/data/custom-audio-list-schema.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema#",
- "type": "object",
- "required": [
- "type",
- "audioSources"
- ],
- "additionalProperties": false,
- "properties": {
- "type": {
- "type": "string",
- "const": "audioSourceList"
- },
- "audioSources": {
- "type": "array",
- "items": {
- "type": "object",
- "required": [
- "url"
- ],
- "additionalProperties": false,
- "properties": {
- "name": {
- "type": "string"
- },
- "url": {
- "type": "string"
- }
- }
- }
- }
- }
-}