Unity · Schema

CreateTicketRequest

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
players array Players to include in the matchmaking ticket
queueName string Name of the matchmaking queue to enter
attributes object
View JSON Schema on GitHub

JSON Schema

unity-createticketrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateTicketRequest",
  "title": "CreateTicketRequest",
  "type": "object",
  "required": [
    "players",
    "queueName"
  ],
  "properties": {
    "players": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Player"
      },
      "description": "Players to include in the matchmaking ticket"
    },
    "queueName": {
      "type": "string",
      "description": "Name of the matchmaking queue to enter"
    },
    "attributes": {
      "$ref": "#/components/schemas/TicketAttributes"
    }
  }
}