開發人員類型

包含遊戲開發人員中繼資料的物件。

欄位

name:字串 - 必要
開發人員的名稱。

  • 長度必須介於 2 至 25 個半形字元之間。

logoImage 陣列 — 必要
開發人員的圖示。

  • 每張圖片都必須是正方形,且不含透明度或陰影。
  • 至少須包含一張大小為 512x512 像素的圖片。
  • 也可以包含大小為 256x256 像素和 128x128 像素的圖片。

範例

{
  "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"
    }
  ]
}