AI-generated Key Takeaways
-
The content defines an Object containing metadata about the game publisher.
-
The required fields are
name(String between 2 and 25 characters) andlogo(Array of square Images with specific size requirements). -
An example JSON object is provided to illustrate the structure of the publisher metadata, including the required name and logo images at different sizes.
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"
}
]
}