Unity · Schema

BuildArtifact

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
key string
name string
primary boolean
show_download boolean
links object
View JSON Schema on GitHub

JSON Schema

unity-buildartifact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BuildArtifact",
  "title": "BuildArtifact",
  "type": "object",
  "properties": {
    "key": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "primary": {
      "type": "boolean"
    },
    "show_download": {
      "type": "boolean"
    },
    "links": {
      "type": "object",
      "properties": {
        "href": {
          "type": "string"
        }
      }
    }
  }
}