Unity · Schema

UpdateScriptRequest

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
code string
params array
View JSON Schema on GitHub

JSON Schema

unity-updatescriptrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateScriptRequest",
  "title": "UpdateScriptRequest",
  "type": "object",
  "properties": {
    "code": {
      "type": "string"
    },
    "params": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScriptParameter"
      }
    }
  }
}