From 608e7e261a3341e749512647882b76e297c942c3 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Tue, 12 Nov 2019 07:56:54 +0100 Subject: [PATCH] Make more fields nullable --- ouya-game.schema.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ouya-game.schema.json b/ouya-game.schema.json index 2e33ede..cb5c1f3 100644 --- a/ouya-game.schema.json +++ b/ouya-game.schema.json @@ -173,8 +173,9 @@ "video": { "description": "Video for the store details page. Vimeo and Youtube URLs supported", - "type": "string", - "format": "url" + "type": ["string", "null"], + "format": "url", + "default": null }, "screenshots": { @@ -230,7 +231,8 @@ "uuid": { "description": "Unique ID for the developer", - "type": "string" + "type": ["string", "null"], + "default": null }, "name": { -- 2.30.2