From 8a71a7c6f5c0fe144f9efc28f86fd5b40e00b8c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Sun, 24 Sep 2023 22:10:55 +0200 Subject: [PATCH] schemas: fix tests.v1, args can be booleans too --- schemas/tests.v1.schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/schemas/tests.v1.schema.json b/schemas/tests.v1.schema.json index e2aca8b6..cacc6399 100644 --- a/schemas/tests.v1.schema.json +++ b/schemas/tests.v1.schema.json @@ -23,7 +23,8 @@ "^[a-z][a-z0-9_]*$": { "anyOf": [ {"type": "string"}, - {"type": "number"} + {"type": "number"}, + {"type": "boolean"} ] } }