changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "cheapest_price_ever": {
+ "properties": {
+ "date": {
+ "description": "ISO date (YYYY-MM-DD) of lowest price",
+ "type": "string"
+ },
+ "price": {
+ "description": "Lowest price ever recorded in USD",
+ "type": "number"
+ }
+ },
+ "required": [
+ "price",
+ "date"
+ ],
+ "type": "object"
+ },
+ "deals": {
+ "items": {
+ "properties": {
+ "deal_id": {
+ "description": "Unique deal identifier",
+ "type": "string"
+ },
+ "price": {
+ "description": "Current price in USD",
+ "type": "number"
+ },
+ "retail_price": {
+ "description": "Retail/MSRP price in USD",
+ "type": "number"
+ },
+ "savings_percent": {
+ "description": "Discount percentage",
+ "type": "number"
+ },
+ "store_id": {
+ "description": "Store ID",
+ "type": "string"
+ }
+ },
+ "required": [
+ "store_id",
+ "deal_id",
+ "price",
+ "retail_price",
+ "savings_percent"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "game_id": {
+ "description": "CheapShark game ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Full game name",
+ "type": "string"
+ },
+ "steam_app_id": {
+ "description": "Steam app ID or null if not on Steam",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "thumb": {
+ "description": "Thumbnail image URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "game_id",
+ "name",
+ "steam_app_id",
+ "thumb",
+ "cheapest_price_ever",
+ "deals"
+ ],
+ "type": "object"
+}