From 3aea34cab6de20835ee7826a0518d1f3ee4363ba Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Fri, 26 May 2023 17:31:36 +0200 Subject: [PATCH] schema-kas.json: Fix dialect URL Use the proper one according to https://json-schema.org/understanding-json-schema/reference/schema.html. Will help jsonschema to find the right validator. Signed-off-by: Jan Kiszka --- kas/schema-kas.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kas/schema-kas.json b/kas/schema-kas.json index 77072e7..a3502ea 100644 --- a/kas/schema-kas.json +++ b/kas/schema-kas.json @@ -1,5 +1,5 @@ { - "$schema": "https://json-schema.org/draft-04/schema", + "$schema": "http://json-schema.org/draft-04/schema#", "$id": "https://github.com/siemens/kas/blob/master/kas/schema-kas.json", "title": "kas configuration", "description": "kas, a setup tool for bitbake based projects",