Unity · Schema

LobbyPlayer

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
id string
data object
joined string
lastUpdated string
View JSON Schema on GitHub

JSON Schema

unity-lobbyplayer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LobbyPlayer",
  "title": "LobbyPlayer",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "data": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/DataObject"
      }
    },
    "joined": {
      "type": "string",
      "format": "date-time"
    },
    "lastUpdated": {
      "type": "string",
      "format": "date-time"
    }
  }
}