{
  "source": "dict.js",
  "method": "rm",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "description": "Delete an item from the store.",
    "properties": {
      "name": {
        "description": "Name of the store.",
        "type": "string",
        "required": true
      },
      "key": {
        "description": "Key with which the value is stored.",
        "type": "string",
        "required": true
      }
    }
  },
  "output-schema": {
  },
  "meta": {
    "sort_index": 4,
    "name": "remove"
  }
}