From: Christian Weiske Date: Tue, 12 Nov 2019 14:19:57 +0000 (+0100) Subject: allow null in versionCode, md5sum and product.description X-Git-Url: https://git.cweiske.de/ouya-game-data.git/commitdiff_plain/0765bcdcc25a870a19d02bc4dc0446f1a91f5da2?ds=sidebyside allow null in versionCode, md5sum and product.description --- diff --git a/ouya-game.schema.json b/ouya-game.schema.json index cb5c1f3..fcd566d 100644 --- a/ouya-game.schema.json +++ b/ouya-game.schema.json @@ -102,7 +102,7 @@ "versionCode": { "description": "APK-internal version code. Run \"aapt dump badging file.apk\", field \"versionCode\"", - "type": ["string", "null"] + "type": ["number", "null"] }, "uuid": { @@ -135,7 +135,8 @@ "md5sum": { "description": "MD5 hash of the .apk file contents", - "type": "string" + "type": ["string", "null"], + "default": null }, "publicSize": { @@ -371,7 +372,8 @@ "description": { "description": "Explanation of the features you will buy", - "type": "string" + "type": ["string", "null"], + "default": null }, "localPrice": {