Unity · Schema

BuildTarget

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
buildtargetid string
name string
platform string
enabled boolean
settings object
created string
modified string
View JSON Schema on GitHub

JSON Schema

unity-buildtarget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BuildTarget",
  "title": "BuildTarget",
  "type": "object",
  "properties": {
    "buildtargetid": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "platform": {
      "type": "string",
      "enum": [
        "ios",
        "android",
        "webgl",
        "standaloneosxintel64",
        "standalonewindows64",
        "standalonelinux64"
      ]
    },
    "enabled": {
      "type": "boolean"
    },
    "settings": {
      "type": "object",
      "properties": {
        "unity": {
          "type": "object",
          "properties": {
            "version": {
              "type": "string"
            }
          }
        },
        "scm": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string"
            },
            "branch": {
              "type": "string"
            }
          }
        }
      }
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "modified": {
      "type": "string",
      "format": "date-time"
    }
  }
}