Unity · Schema

Pool

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
name string
maximumPlayerCount integer
minimumPlayerCount integer
matchLogic object
View JSON Schema on GitHub

JSON Schema

unity-pool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Pool",
  "title": "Pool",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "maximumPlayerCount": {
      "type": "integer"
    },
    "minimumPlayerCount": {
      "type": "integer"
    },
    "matchLogic": {
      "$ref": "#/components/schemas/MatchLogic"
    }
  }
}