From 784d146a01e0b7c8ba0990d8065e57c9955af35e Mon Sep 17 00:00:00 2001 From: Kyle Hensel Date: Sun, 26 Feb 2023 18:13:15 +1300 Subject: [PATCH] allow multiple `prerequisiteTag`s --- schemas/field.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/schemas/field.json b/schemas/field.json index d0fbca8..8d94f15 100644 --- a/schemas/field.json +++ b/schemas/field.json @@ -193,7 +193,17 @@ }, "value": { "description": "The value that the tag must have. (alternative to 'valueNot')", - "type": "string", + "type": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { "type": "string" } + } + ] + }, "required": true } },