Unity · Schema

Allocation

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
allocationID string
serverID integer
ip string
port integer
queryPort integer
View JSON Schema on GitHub

JSON Schema

unity-allocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Allocation",
  "title": "Allocation",
  "type": "object",
  "properties": {
    "allocationID": {
      "type": "string",
      "format": "uuid"
    },
    "serverID": {
      "type": "integer"
    },
    "ip": {
      "type": "string"
    },
    "port": {
      "type": "integer"
    },
    "queryPort": {
      "type": "integer"
    }
  }
}