{
  "source": "var.js",
  "method": "set",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "key": {
        "type": "string",
        "description": "Specify a string key to which the global variable will be bound. The same key can be used to retrieve the value later."
      },
      "value": {
        "type": "any",
        "description": "The value to be bound."
      }
    }
  },
  "output-schema": {
    "type": "any",
    "description": "Returns the same value that is set."
  },
  "meta": {
    "name": "setGlobalVariable",
    "sort_index": 7,
    "description": "Set a value as a global variable with the given key as the name. The value can be retrieved later using the getVariable module by passing the same key.",
    "icon": {
        "type": "fa",
        "label": "variable",
        "name": "arrow-right"
    }
  }
}
