{
  "source": "var.js",
  "method": "setInstanceVar",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "key": {
        "type": "string",
        "description": "Specify a string key to which the instance variable will be bound. The same key can be used to retrieve the value later."
      },
      "value": {
        "type": "any",
        "description": "The value to be bound."
      },
      "merge": {
        "type": "boolean"
      }
    }
  },
  "output-schema": {
  },
  "meta": {
    "name": "setInstanceVariable",
    "sort_index": 9,
    "description": "Set a value to an instance variable. Instance variables are scoped within a flow and it's children. The value of an instance variable can be retrieved using the module getInstanceVariable.",
    "icon": {
        "type": "fa",
        "label": "variable",
        "name": "arrow-circle-o-right"
    }
  }
}