Add products to JSON schema
authorChristian Weiske <cweiske@cweiske.de>
Sun, 10 Nov 2019 10:58:31 +0000 (11:58 +0100)
committerChristian Weiske <cweiske@cweiske.de>
Sun, 10 Nov 2019 10:58:31 +0000 (11:58 +0100)
schema.json

index 8ce2e304a466a80d887767ca46021e5ca8e9404a..cc593e21be9f248be6abddc7883b35b8585b009c 100644 (file)
         },
 
         "products": {
+            "description": "Items that could be bought via the discover store",
             "type": "array",
             "items": {
-                "FIXME": ""
+                "type": "object",
+                "required": [
+                    "identifier",
+                    "name",
+                    "description",
+                    "localPrice",
+                    "originalPrice",
+                    "currency"
+                ],
+                "additionalProperties": false,
+                "properties": {
+
+                    "promoted": {
+                        "description": "If this product is the currently promoted/visible one",
+                        "type": "boolean"
+                    },
+
+                    "identifier": {
+                        "description": "Internal key (\"full_version\")",
+                        "type": "string"
+                    },
+
+                    "name": {
+                        "description": "Human readable name (\"Unlock full game\")",
+                        "type": "string"
+                    },
+
+                    "description": {
+                        "description": "Explanation of the features you will buy",
+                        "type": "string"
+                    },
+
+                    "localPrice": {
+                        "description": "Current price (maybe discounted)",
+                        "type": "number"
+                    },
+
+                    "originalPrice": {
+                        "description": "Previous price",
+                        "type": "number"
+                    },
+
+                    "currency": {
+                        "description": "Three-letter currency code, depending on the player that was logged in",
+                        "type": "string",
+                        "enum": ["EUR", "USD"]
+                    }
+                }
             }
         }
     }