Unity · Schema

TicketAttributes

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
skill number Player skill rating for skill-based matchmaking
attributes object
View JSON Schema on GitHub

JSON Schema

unity-ticketattributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TicketAttributes",
  "title": "TicketAttributes",
  "type": "object",
  "properties": {
    "skill": {
      "type": "number",
      "description": "Player skill rating for skill-based matchmaking"
    },
    "attributes": {
      "type": "object",
      "additionalProperties": {}
    }
  }
}