addedInput schema / examples
Added value: +[
+ {
+ "desc": true,
+ "onSale": true,
+ "pageNumber": 0,
+ "pageSize": 20,
+ "sortBy": "Savings",
+ "storeID": "1,2,6"
+ },
+ {
+ "AAA": true,
+ "lowerPrice": 20,
+ "metacritic": 80,
+ "title": "Elden Ring",
+ "upperPrice": 60
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of items returned.",
+ "type": "integer"
+ },
+ "items": {
+ "items": {
+ "properties": {
+ "dealID": {
+ "description": "Unique deal identifier",
+ "type": "string"
+ },
+ "dealRating": {
+ "description": "Deal rating score",
+ "type": "string"
+ },
+ "gameID": {
+ "description": "Game ID associated with deal",
+ "type": "string"
+ },
+ "isOnSale": {
+ "description": "Whether deal is currently on sale",
+ "type": "boolean"
+ },
+ "lastChange": {
+ "description": "Unix timestamp of last change",
+ "type": "number"
+ },
+ "metacriticScore": {
+ "description": "Metacritic score",
+ "type": "string"
+ },
+ "normalPrice": {
+ "description": "Normal retail price",
+ "type": "string"
+ },
+ "releaseDate": {
+ "description": "Unix timestamp of release date",
+ "type": "number"
+ },
+ "salePrice": {
+ "description": "Current sale price",
+ "type": "string"
+ },
+ "savings": {
+ "description": "Savings percentage",
+ "type": "string"
+ },
+ "steamRatingPercent": {
+ "description": "Steam rating percentage",
+ "type": "string"
+ },
+ "steamRatingText": {
+ "description": "Steam rating text",
+ "type": "string"
+ },
+ "storeID": {
+ "description": "Store identifier",
+ "type": "string"
+ },
+ "thumb": {
+ "description": "Thumbnail image URL",
+ "type": "string"
+ },
+ "title": {
+ "description": "Deal title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items",
+ "count"
+ ],
+ "type": "object"
+}