changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "cheapestPriceEver": {
+ "properties": {
+ "date": {
+ "description": "Unix timestamp of cheapest price",
+ "type": "number"
+ },
+ "price": {
+ "description": "Cheapest price ever recorded",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "deals": {
+ "items": {
+ "properties": {
+ "dealID": {
+ "description": "Deal identifier",
+ "type": "string"
+ },
+ "dealRating": {
+ "description": "Deal rating",
+ "type": "string"
+ },
+ "isOnSale": {
+ "description": "Whether on sale",
+ "type": "boolean"
+ },
+ "lastChange": {
+ "description": "Unix timestamp of last change",
+ "type": "number"
+ },
+ "normalPrice": {
+ "description": "Normal price",
+ "type": "string"
+ },
+ "price": {
+ "description": "Current deal price",
+ "type": "string"
+ },
+ "savings": {
+ "description": "Savings percentage",
+ "type": "string"
+ },
+ "storeID": {
+ "description": "Store identifier",
+ "type": "string"
+ },
+ "storeIcon": {
+ "description": "Store icon URL",
+ "type": "string"
+ },
+ "url": {
+ "description": "Deal URL",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "gameID": {
+ "description": "Game identifier",
+ "type": "string"
+ },
+ "steamAppID": {
+ "description": "Steam app ID if available",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "thumb": {
+ "description": "Game thumbnail URL",
+ "type": "string"
+ },
+ "title": {
+ "description": "Game title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}