From: Christian Weiske Date: Tue, 12 Nov 2019 06:56:54 +0000 (+0100) Subject: Make more fields nullable X-Git-Url: https://git.cweiske.de/ouya-game-data.git/commitdiff_plain/608e7e261a3341e749512647882b76e297c942c3 Make more fields nullable --- 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": {