From 1491738fc2d53fd67e66e5218c9e600259ced930 Mon Sep 17 00:00:00 2001 From: Reorx Date: Fri, 3 Feb 2023 01:03:30 +0800 Subject: [PATCH] schema: add format:date for iso8601 this enables input:datetime for json editor --- schema/jsoncv.schema.json | 1 + 1 file changed, 1 insertion(+) diff --git a/schema/jsoncv.schema.json b/schema/jsoncv.schema.json index 381eba8..7d9b8ad 100644 --- a/schema/jsoncv.schema.json +++ b/schema/jsoncv.schema.json @@ -5,6 +5,7 @@ "iso8601": { "type": "string", "description": "e.g. 2014-06-29", + "format": "date", "pattern": "^([1-2][0-9]{3}-[0-1][0-9]-[0-3][0-9]|[1-2][0-9]{3}-[0-1][0-9]|[1-2][0-9]{3})$" } },