Unity · Schema

MatchAssignment

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
connection string Server connection string for the matched game
payload object Additional match data
View JSON Schema on GitHub

JSON Schema

unity-matchassignment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MatchAssignment",
  "title": "MatchAssignment",
  "type": "object",
  "properties": {
    "connection": {
      "type": "string",
      "description": "Server connection string for the matched game"
    },
    "payload": {
      "type": "object",
      "description": "Additional match data"
    }
  }
}