TheGamesDB · Schema

GamesUpdatesResponse

API response for game updates

DatabaseGamingVideo GamesMetadataArtwork

Properties

Name Type Description
code integer HTTP response code
status string Response status
data object
View JSON Schema on GitHub

JSON Schema

thegamesdb-games-updates-response-schema.json Raw ↑
{
  "$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"
              }
            }
          }
        }
      }
    }
  }
}