Unity · Schema

CreateBuildTargetRequest

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

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

JSON Schema

unity-createbuildtargetrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateBuildTargetRequest",
  "title": "CreateBuildTargetRequest",
  "type": "object",
  "required": [
    "name",
    "platform"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "platform": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    },
    "settings": {
      "type": "object"
    }
  }
}