TheGamesDB · Schema

GameImage

Game or platform artwork image

DatabaseGamingVideo GamesMetadataArtwork

Properties

Name Type Description
id integer Image identifier
type string Image type
side string Image side for boxart (front/back)
filename string Image filename path
resolution string Image resolution (WxH)
View JSON Schema on GitHub

JSON Schema

thegamesdb-game-image-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-game-image-schema.json",
  "title": "GameImage",
  "description": "Game or platform artwork image",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Image identifier"
    },
    "type": {
      "type": "string",
      "description": "Image type",
      "enum": [
        "boxart",
        "screenshot",
        "fanart",
        "banner",
        "clearlogo"
      ]
    },
    "side": {
      "type": "string",
      "description": "Image side for boxart (front/back)",
      "nullable": true
    },
    "filename": {
      "type": "string",
      "description": "Image filename path"
    },
    "resolution": {
      "type": "string",
      "description": "Image resolution (WxH)",
      "nullable": true
    }
  }
}