From 91b73c05f641315f8bc38d897a4db0ab6434e041 Mon Sep 17 00:00:00 2001 From: Peter Niederlag Date: Mon, 27 Mar 2023 23:07:39 +0200 Subject: [PATCH] fix: upload in yaml, allow array or string (#3551) (#3552) --- src/schema.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/schema.json b/src/schema.json index 6e2ba78f6..4f656fcbb 100644 --- a/src/schema.json +++ b/src/schema.json @@ -70,7 +70,17 @@ ], "properties": { "src": { - "type": "string" + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + } + } + ] }, "dest": { "type": "string"