From 9c17d5fae66f2b95e45cc0df70b77b0584bcea34 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Thu, 16 Feb 2023 17:44:05 -0600 Subject: [PATCH] Move recyclarr property up a level The `recyclarr` property was under `json_paths` which isn't appropriate for a few reasons: 1. `json_paths` is expected to be for guide-only data (like custom formats). 2. The recyclarr path at the moment is to YAML files, not JSON files. --- metadata.json | 6 +++--- metadata.schema.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/metadata.json b/metadata.json index c9720ba8e..fb53e56c3 100644 --- a/metadata.json +++ b/metadata.json @@ -11,9 +11,9 @@ "custom_formats": ["docs/json/sonarr/cf"], "qualities": ["docs/json/sonarr/quality-size"], "naming": ["docs/json/sonarr/naming"] - }, - "recyclarr": { - "templates": "docs/recyclarr-configs" } + }, + "recyclarr": { + "templates": "docs/recyclarr-configs" } } diff --git a/metadata.schema.json b/metadata.schema.json index a0d7cc636..6c050c516 100644 --- a/metadata.schema.json +++ b/metadata.schema.json @@ -10,10 +10,10 @@ "additionalProperties": false, "properties": { "radarr": { "$ref": "#/$defs/radarr" }, - "sonarr": { "$ref": "#/$defs/sonarr" }, - "recyclarr": { "$ref": "#/$defs/recyclarr" } + "sonarr": { "$ref": "#/$defs/sonarr" } } - } + }, + "recyclarr": { "$ref": "#/$defs/recyclarr" } }, "$defs": { "paths_object": {