Unity · Schema

BuildConfiguration

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
buildId integer
commandLine string
queryType string
binaryPath string
cores integer
speedMhz integer
memory integer
View JSON Schema on GitHub

JSON Schema

unity-buildconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BuildConfiguration",
  "title": "BuildConfiguration",
  "type": "object",
  "properties": {
    "buildId": {
      "type": "integer"
    },
    "commandLine": {
      "type": "string"
    },
    "queryType": {
      "type": "string",
      "enum": [
        "SQPQUERYTYPE",
        "A2SQUERYTYPE",
        "NONE"
      ]
    },
    "binaryPath": {
      "type": "string"
    },
    "cores": {
      "type": "integer"
    },
    "speedMhz": {
      "type": "integer"
    },
    "memory": {
      "type": "integer"
    }
  }
}