{
  "source": "file.js",
  "method": "exists",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "path": {
        "type": "string",
        "format": "filechooser",
        "required": true
      }
    }
  },
  "output-schema": {
    "type": "object",
    "properties": {
      "exists": {
        "type": "boolean"
      }
    }
  },
  "meta": {
    "name": "exists",
    "description": "Returns true if the path is found and is a file or a directory."
  }
}