Page Summary
-
Developer metadata is stored in an Object with two required fields:
nameandlogo. -
The
namefield is a required string between 2 and 25 characters. -
The
logofield is a required array of square images with no transparency or shadows, including at least a 512x512px image.
An Object containing metadata about the game developer.
Fields
name: String — required
The name of the developer.
- Must be between 2 and 25 characters long.
logo: Array of Image — required
The developer's icon.
- 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.
Examples
{
"name": "GameSnacks developer name",
"logo": [
{
"size": {
"width": 512,
"height": 512
},
"src": "images/developer-logo-512.png"
},
{
"size": {
"width": 256,
"height": 256
},
"src": "images/developer-logo-256.png"
},
{
"size": {
"width": 128,
"height": 128
},
"src": "images/developer-logo-128.png"
}
]
}