Marketing type

  • The content defines an Object containing marketing information and assets for a game.

  • Required fields include horizontal banners, vertical banners, screenshots, and game icons, each with specific image requirements for aspect ratio and size.

  • Horizontal banners require a 16:9 aspect ratio and a minimum size of 1920x1080px.

  • Vertical banners require a 9:16 aspect ratio and a minimum size of 1080x1920px.

  • Screenshots must include at least 3 images with 16:9 or 9:16 aspect ratios and a minimum size of 1920x1080px or 1080x1920px.

  • Game icons must be square images with a minimum size of 512x512px.

An Object containing marketing information and assets.

Fields

horizontalBanners: Array of Imagerequired
The horizontal banner of the game.

  • Each image must have an aspect ratio of 16:9.
  • Must include at least an image with size 1920x1080px.
  • May also include images with sizes 480x270px and 240x135px.

verticalBanners: Array of Imagerequired
The vertical banner of the game.

  • Each image must have an aspect ratio of 9:16.
  • Must include at least an image with size 1080x1920px.
  • May also include images with sizes 270x480px and 135x240px.

screenshots: Array of Imagerequired
Screenshots from the game.

  • Must include at least 3 different screenshots.
  • Each image must have an aspect ratio of 16:9 or 9:16.
  • All images must have a size of at least 1920x1080px or 1080x1920px.

gameIcons: Array of Imagerequired
The icon that's shown when the game is installed or added to the homescreen.

  • Each image must be square with no transparency or shadows.
  • Must include at least an image with size 512x512px.
  • May also include images with sizes 256x256px and 128x128px.

trailers: Array of Video — default: []
The trailers of the game.

  • Each video must have an aspect ratio of 16:9.
  • At least one video must have a size of 1920x1080px.

Examples

{
  "horizontalBanners": [
    {
      "size": {
        "height": 1080,
        "width": 1920
      },
      "src": "images/testgame-horizontal-banner.png"
    },
    ...
  ],
  "verticalBanners": [
    {
      "size": {
        "height": 1920,
        "width": 1080
      },
      "src": "images/testgame-tall-banner.png"
    },
    ...
  ],
  "screenshots": [
    {
      "size": {
        "width": 1080,
        "height": 1920
      },
      "src": "images/testgame-screenshot1.png"
    },
    ...
  ],
  "gameIcons": [
    {
      "size": {
        "height": 512,
        "width": 512
      },
      "src": "images/testgame-icon.png"
    },
    ...
  ]
}