From 1589226f811b799ff633cb1b78bc2f36cd61e5fa Mon Sep 17 00:00:00 2001 From: Zacharias Date: Tue, 8 Oct 2024 11:13:29 +0200 Subject: [PATCH] Updated JSON Schema to allow multible digits in y position of pointer#start if defined with a string comprised of an X, Y position --- schemas/speedometer_config_schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/speedometer_config_schema.json b/schemas/speedometer_config_schema.json index 160f917..ac2feb0 100644 --- a/schemas/speedometer_config_schema.json +++ b/schemas/speedometer_config_schema.json @@ -43,7 +43,7 @@ }, { "type": "string", - "pattern": "^\\([0-9]+,( )?[0-9]\\)+$", + "pattern": "^\\([0-9]+,( )?[0-9]+\\)+$", "description": "Starting position of the pointer" }, {