From bd4ee30289b6b42cce5a1d8fab3099f21b9c4af9 Mon Sep 17 00:00:00 2001 From: Reorx Date: Thu, 2 Feb 2023 11:24:04 +0800 Subject: [PATCH] schema: migrate jsoncv schema using ajv cli command: npx ajv migrate -s schema/jsoncv.schema.json the result is that only the schema version changed from draft-04 to draft-07, allowing to use ajv for the latest version --- schema/jsoncv.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema/jsoncv.schema.json b/schema/jsoncv.schema.json index 4e31cff..63f8806 100644 --- a/schema/jsoncv.schema.json +++ b/schema/jsoncv.schema.json @@ -1,5 +1,5 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema", "additionalProperties": false, "definitions": { "iso8601": { @@ -497,4 +497,4 @@ }, "title": "Resume Schema", "type": "object" -} +} \ No newline at end of file