{
  "source": "dict.js",
  "method": "get",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "description": "Retrieve a single entry 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": {
    "type": "any"
  },
  "meta": {
    "sort_index": 2,
    "name": "get"
  }
}