Unity · Schema

LeaderboardScoreList

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
offset integer
limit integer
total integer
results array
View JSON Schema on GitHub

JSON Schema

unity-leaderboardscorelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LeaderboardScoreList",
  "title": "LeaderboardScoreList",
  "type": "object",
  "properties": {
    "offset": {
      "type": "integer"
    },
    "limit": {
      "type": "integer"
    },
    "total": {
      "type": "integer"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PlayerScore"
      }
    }
  }
}