From 9bce114c976c9201e4041ae1c9e43144bc5e2ed8 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Sat, 13 Aug 2022 20:07:33 -0500 Subject: [PATCH] chore: Fix incorrect references in metadata schema --- metadata.schema.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/metadata.schema.json b/metadata.schema.json index 2f94ffbbc..ecc767d91 100644 --- a/metadata.schema.json +++ b/metadata.schema.json @@ -1,5 +1,5 @@ { - "$schema": "https://json-schema.org/draft/2020-12/schema", + "$schema": "https://json-schema.org/draft-07/schema", "$id": "https://raw.githubusercontent.com/TRaSH-/Guides/master/metadata.schema.json", "type": "object", "additionalProperties": false, @@ -9,8 +9,8 @@ "type": "object", "additionalProperties": false, "properties": { - "radarr": "#/$defs/radarr", - "sonarr": "#/$defs/sonarr" + "radarr": { "$ref": "#/$defs/radarr" }, + "sonarr": { "$ref": "#/$defs/sonarr" } } } }, @@ -27,14 +27,14 @@ "type": "object", "additionalProperties": false, "properties": { - "custom_formats": "#/$defs/custom_formats" + "custom_formats": { "$ref": "#/$defs/custom_formats" } } }, "sonarr": { "type": "object", "additionalProperties": false, "properties": { - "release_profiles": "#/$defs/release_profiles" + "release_profiles": { "$ref": "#/$defs/release_profiles" } } } }