{
  "source": "dict.js",
  "method": "set",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "description": "Set a key/value in the specified store. If a value already exists with same key, it will be overwritten.",
    "properties": {
      "name": {
        "description": "Name of the store.",
        "type": "string",
        "required": true
      },
      "key": {
        "description": "Specify a key for the entry.",
        "type": "string",
        "required": true
      },
      "value": {
        "description": "Specify a value for the entry.",
        "type": "any"
      }
    }
  },
  "output-schema": {
  },
  "meta": {
    "sort_index": 3,
    "name": "set"
  }
}