From 0765bcdcc25a870a19d02bc4dc0446f1a91f5da2 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Tue, 12 Nov 2019 15:19:57 +0100 Subject: [PATCH] allow null in versionCode, md5sum and product.description --- 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 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": { -- 2.30.2