Unity · Schema

ScriptParameter

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
name string
type string
required boolean
View JSON Schema on GitHub

JSON Schema

unity-scriptparameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScriptParameter",
  "title": "ScriptParameter",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "STRING",
        "NUMERIC",
        "BOOLEAN",
        "JSON"
      ]
    },
    "required": {
      "type": "boolean"
    }
  }
}