An Object containing marketing information and assets.
Fields
horizontalBanners
: Array of Image — required
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 Image — required
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 Image — required
Screenshots from the game.
- Must include at least 3 different screenshots.
- Each image must have an aspect ratio of 16:9 or 9:16.
- At least one image must have a size of 1920x1080px or 1080x1920px.
gameIcons
: Array of Image — required
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"
},
...
]
}