TheGamesDB · JSON Structure

Thegamesdb Game Image Structure

Game or platform artwork image

Type: object Properties: 5
DatabaseGamingVideo GamesMetadataArtwork

GameImage is a JSON Structure definition published by TheGamesDB, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id type side filename resolution

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/thegamesdb/refs/heads/main/json-structure/thegamesdb-game-image-structure.json",
  "name": "GameImage",
  "description": "Game or platform artwork image",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "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
    }
  }
}