Make more fields nullable
authorChristian Weiske <cweiske@cweiske.de>
Tue, 12 Nov 2019 06:56:54 +0000 (07:56 +0100)
committerChristian Weiske <cweiske@cweiske.de>
Tue, 12 Nov 2019 06:56:54 +0000 (07:56 +0100)
ouya-game.schema.json

index 2e33ede80f379f0a5df3dd504ac1aef6d614a430..cb5c1f3faf6910e2ca508b552f55543f2dfc3cbe 100644 (file)
 
                 "video": {
                     "description": "Video for the store details page. Vimeo and Youtube URLs supported",
 
                 "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": {
                 },
 
                 "screenshots": {
 
                 "uuid": {
                     "description": "Unique ID for the developer",
 
                 "uuid": {
                     "description": "Unique ID for the developer",
-                    "type": "string"
+                    "type": ["string", "null"],
+                    "default": null
                 },
 
                 "name": {
                 },
 
                 "name": {