Unity · Schema

CreateQueueRequest

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
name string
enabled boolean
defaultEscalationRules object
pools array
View JSON Schema on GitHub

JSON Schema

unity-createqueuerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateQueueRequest",
  "title": "CreateQueueRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean",
      "default": true
    },
    "defaultEscalationRules": {
      "$ref": "#/components/schemas/EscalationRules"
    },
    "pools": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Pool"
      }
    }
  }
}