From 6bc0c2b28f2ca6130f1eeb59970f0989ec61d9e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Sat, 26 Aug 2023 11:20:08 +0200 Subject: [PATCH] schema tests: fix: install_args children schema syntax was faulty --- schemas/tests.v1.schema.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/schemas/tests.v1.schema.json b/schemas/tests.v1.schema.json index b354aacc..e2aca8b6 100644 --- a/schemas/tests.v1.schema.json +++ b/schemas/tests.v1.schema.json @@ -21,12 +21,10 @@ "additionalProperties": false, "patternProperties": { "^[a-z][a-z0-9_]*$": { - "type": { - "anyOf": [ - {"type": "string"}, - {"type": "number"} - ] - } + "anyOf": [ + {"type": "string"}, + {"type": "number"} + ] } } },