plugin/hub: specify type of architectures array

In the json schema used to validate the input, specify the type of
the architectures array as a string.
This commit is contained in:
Christian Kellner 2020-09-17 15:39:11 +02:00 committed by Tom Gundersen
parent 9ad7faf298
commit 24850d3303

View file

@ -39,7 +39,10 @@ OSBUILD_IMAGE_SCHEMA = {
{
"type": "array",
"description": "Architectures",
"minItems": 1
"minItems": 1,
"items": {
"type": "string"
}
},
{
"type": "object",