From 290b4e7ea98b357877c9214809e307a4014f4783 Mon Sep 17 00:00:00 2001 From: Roger Peppe Date: Wed, 11 Sep 2024 17:58:10 +0100 Subject: [PATCH] schemas/json/base: fix invalid references (#4064) These references cannot resolve correctly, so fix them so they do. Fixes #4063 --- src/schemas/json/base-04.json | 8 ++++---- src/schemas/json/base.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/schemas/json/base-04.json b/src/schemas/json/base-04.json index 536551b23b3..7dda01b1fac 100644 --- a/src/schemas/json/base-04.json +++ b/src/schemas/json/base-04.json @@ -34,7 +34,7 @@ "id": "nullable-path", "oneOf": [ { - "$ref": "#/definitions/path" + "$ref": "path" }, { "type": "null" @@ -55,7 +55,7 @@ "id": "nullable-editor", "oneOf": [ { - "$ref": "#/definitions/editor" + "$ref": "editor" }, { "type": "null" @@ -65,7 +65,7 @@ "license": { "anyOf": [ { - "$ref": "https://json.schemastore.org/base-04.json#/definitions/osi-license" + "$ref": "osi-license" }, { "type": "string" @@ -814,7 +814,7 @@ "id": "nullable-timezone", "oneOf": [ { - "$ref": "#/definitions/timezone" + "$ref": "timezone" }, { "type": "null" diff --git a/src/schemas/json/base.json b/src/schemas/json/base.json index e1752db2a7b..ffc2225fdc2 100644 --- a/src/schemas/json/base.json +++ b/src/schemas/json/base.json @@ -35,7 +35,7 @@ "$id": "nullable-path", "oneOf": [ { - "$ref": "#/definitions/path" + "$ref": "path" }, { "type": "null" @@ -56,7 +56,7 @@ "$id": "nullable-editor", "oneOf": [ { - "$ref": "#/definitions/editor" + "$ref": "editor" }, { "type": "null" @@ -67,7 +67,7 @@ "$id": "license", "anyOf": [ { - "$ref": "https://json.schemastore.org/base.json#/definitions/osi-license" + "$ref": "osi-license" }, { "type": "string" @@ -817,7 +817,7 @@ "$id": "nullable-timezone", "oneOf": [ { - "$ref": "#/definitions/timezone" + "$ref": "timezone" }, { "type": "null"