Unity · Schema

PlayerScore

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
playerId string
playerName string
rank integer
score number
tier string
updatedTime string
metadata string
View JSON Schema on GitHub

JSON Schema

unity-playerscore-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlayerScore",
  "title": "PlayerScore",
  "type": "object",
  "properties": {
    "playerId": {
      "type": "string"
    },
    "playerName": {
      "type": "string"
    },
    "rank": {
      "type": "integer"
    },
    "score": {
      "type": "number"
    },
    "tier": {
      "type": "string"
    },
    "updatedTime": {
      "type": "string",
      "format": "date-time"
    },
    "metadata": {
      "type": "string"
    }
  }
}