API response for game updates
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/thegamesdb/refs/heads/main/json-schema/thegamesdb-games-updates-response-schema.json", "title": "GamesUpdatesResponse", "description": "API response for game updates", "type": "object", "properties": { "code": { "type": "integer", "description": "HTTP response code" }, "status": { "type": "string", "description": "Response status" }, "data": { "type": "object", "properties": { "count": { "type": "integer" }, "updates": { "type": "array", "items": { "type": "object", "properties": { "game_id": { "type": "integer" }, "edit_id": { "type": "integer" } } } } } } } }