Developer type

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 Imagerequired
The developer'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 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"
    }
  ]
}