Publisher type
Stay organized with collections
Save and categorize content based on your preferences.
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"
}
]
}
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-03 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-03 UTC."],[[["\u003cp\u003eThe object describes a game publisher and requires a name and logo.\u003c/p\u003e\n"],["\u003cp\u003eThe publisher name must be a string between 2 and 25 characters long.\u003c/p\u003e\n"],["\u003cp\u003eThe publisher logo consists of an array of square images (at least 512x512px, 256x256px, and 128x128px) without transparency or shadows.\u003c/p\u003e\n"]]],[],null,["# Publisher type\n\nAn Object containing metadata about the game publisher.\n\nFields\n------\n\n`name`: String --- **required** \n\nThe name of the publisher.\n\n- Must be between 2 and 25 characters long.\n\n`logo`: Array of [Image](./image) --- **required** \n\nThe publisher's icon.\n\n- Each image must be square with no transparency or shadows.\n- Must include at least the sizes 512x512px, 256x256px, and 128x128px. Other sizes may be optionally included in addition to these.\n\nExamples\n--------\n\n {\n \"name\": \"GameSnacks publisher name\",\n \"logo\": [\n {\n \"size\": {\n \"height\": 512,\n \"width\": 512\n },\n \"src\": \"images/publisher-logo-512.png\"\n },\n {\n \"size\": {\n \"height\": 256,\n \"width\": 256\n },\n \"src\": \"images/publisher-logo-256.png\"\n },\n {\n \"size\": {\n \"height\": 128,\n \"width\": 128\n },\n \"src\": \"images/publisher-logo-128.png\"\n }\n ]\n }"]]