AI-generated Key Takeaways
-
The object describes a game publisher and requires a name and logo.
-
The publisher name must be a string between 2 and 25 characters long.
-
The publisher logo consists of an array of square images (at least 512x512px, 256x256px, and 128x128px) without transparency or shadows.
An Object containing metadata about the game publisher.
Fields
name
: String — required
The name of the publisher.
- Must be between 2 and 25 characters long.
logo
: Array of Image — required
The publisher's icon.
- Each image must be square with no transparency or shadows.
- Must include at least the sizes 512x512px, 256x256px, and 128x128px. Other sizes may be optionally included in addition to these.
Examples
{
"name": "GameSnacks publisher name",
"logo": [
{
"size": {
"height": 512,
"width": 512
},
"src": "images/publisher-logo-512.png"
},
{
"size": {
"height": 256,
"width": 256
},
"src": "images/publisher-logo-256.png"
},
{
"size": {
"height": 128,
"width": 128
},
"src": "images/publisher-logo-128.png"
}
]
}