From b38599ff8fa61e44651da2f2883af359af16ed4c Mon Sep 17 00:00:00 2001 From: Sajay Antony Date: Thu, 29 Sep 2022 22:53:07 +0000 Subject: [PATCH] fix: revert schema identifier for draft-04 Schema for draft 4 should follow - https://json-schema.org/understanding-json-schema/reference/schema.html#id4 Signed-off-by: Sajay Antony --- schema/config-schema.json | 2 +- schema/content-descriptor.json | 2 +- schema/image-index-schema.json | 2 +- schema/image-layout-schema.json | 2 +- schema/image-manifest-schema.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/schema/config-schema.json b/schema/config-schema.json index f85f8cd4b..9b3be97c5 100644 --- a/schema/config-schema.json +++ b/schema/config-schema.json @@ -1,6 +1,6 @@ { "description": "OpenContainer Config Specification", - "$schema": "https://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://opencontainers.org/schema/image/config", "type": "object", "properties": { diff --git a/schema/content-descriptor.json b/schema/content-descriptor.json index b64ca1313..9157e04a7 100644 --- a/schema/content-descriptor.json +++ b/schema/content-descriptor.json @@ -1,6 +1,6 @@ { "description": "OpenContainer Content Descriptor Specification", - "$schema": "https://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://opencontainers.org/schema/descriptor", "type": "object", "properties": { diff --git a/schema/image-index-schema.json b/schema/image-index-schema.json index e99131bf0..3d56767d4 100644 --- a/schema/image-index-schema.json +++ b/schema/image-index-schema.json @@ -1,6 +1,6 @@ { "description": "OpenContainer Image Index Specification", - "$schema": "https://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://opencontainers.org/schema/image/index", "type": "object", "properties": { diff --git a/schema/image-layout-schema.json b/schema/image-layout-schema.json index 714ed82a2..874d2174c 100644 --- a/schema/image-layout-schema.json +++ b/schema/image-layout-schema.json @@ -1,6 +1,6 @@ { "description": "OpenContainer Image Layout Schema", - "$schema": "https://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://opencontainers.org/schema/image/layout", "type": "object", "properties": { diff --git a/schema/image-manifest-schema.json b/schema/image-manifest-schema.json index 8286376eb..94d07a0e0 100644 --- a/schema/image-manifest-schema.json +++ b/schema/image-manifest-schema.json @@ -1,6 +1,6 @@ { "description": "OpenContainer Image Manifest Specification", - "$schema": "https://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://opencontainers.org/schema/image/manifest", "type": "object", "properties": {