From 50627b713cff6dfa34bb38fef67d0edc646dfbc4 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Tue, 20 Jul 2021 17:16:51 +0000 Subject: [PATCH] schema/v2: make options for devices optional Some devices might not need any options. --- schemas/osbuild2.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/osbuild2.json b/schemas/osbuild2.json index d7e7beb0..1f19e8f4 100644 --- a/schemas/osbuild2.json +++ b/schemas/osbuild2.json @@ -26,7 +26,7 @@ "device": { "title": "Device for a stage", "additionalProperties": false, - "required": ["type", "options"], + "required": ["type"], "properties": { "type": { "type": "string" }, "options": {