changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "deals": {
+ "items": {
+ "properties": {
+ "deal_id": {
+ "description": "Unique deal identifier",
+ "type": "string"
+ },
+ "deal_rating": {
+ "description": "Community deal rating score",
+ "type": "number"
+ },
+ "game_id": {
+ "description": "CheapShark game ID",
+ "type": "string"
+ },
+ "metacritic_score": {
+ "description": "Metacritic score (0-100) or null if unavailable",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "normal_price": {
+ "description": "Regular/normal price in USD",
+ "type": "number"
+ },
+ "sale_price": {
+ "description": "Current sale price in USD",
+ "type": "number"
+ },
+ "savings_percent": {
+ "description": "Discount percentage",
+ "type": "number"
+ },
+ "steam_rating_percent": {
+ "description": "Steam user rating percentage or null if unavailable",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "store_id": {
+ "description": "Store ID where deal is available",
+ "type": "string"
+ },
+ "thumb": {
+ "description": "Thumbnail image URL",
+ "type": "string"
+ },
+ "title": {
+ "description": "Game title",
+ "type": "string"
+ }
+ },
+ "required": [
+ "game_id",
+ "deal_id",
+ "title",
+ "store_id",
+ "sale_price",
+ "normal_price",
+ "savings_percent",
+ "deal_rating",
+ "thumb"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total number of deals returned",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "deals"
+ ],
+ "type": "object"
+}