Unity · Schema

Queue

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

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

JSON Schema

unity-queue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Queue",
  "title": "Queue",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    },
    "defaultEscalationRules": {
      "$ref": "#/components/schemas/EscalationRules"
    },
    "pools": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Pool"
      }
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "modified": {
      "type": "string",
      "format": "date-time"
    }
  }
}