Unity · Schema

JoinLobbyRequest

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
playerId string
player object
View JSON Schema on GitHub

JSON Schema

unity-joinlobbyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JoinLobbyRequest",
  "title": "JoinLobbyRequest",
  "type": "object",
  "required": [
    "playerId"
  ],
  "properties": {
    "playerId": {
      "type": "string"
    },
    "player": {
      "$ref": "#/components/schemas/CreatePlayerRequest"
    }
  }
}