> ## Documentation Index
> Fetch the complete documentation index at: https://prefab.prefect.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# OpenLink

> JSON Schema for the OpenLink action.

Open a URL via the host.

```json theme={"theme":{"light":"snazzy-light","dark":"dark-plus"}}
{
  "type": "object",
  "properties": {
    "action": {
      "const": "openLink",
      "default": "openLink",
      "type": "string"
    },
    "url": {
      "description": "URL to open",
      "type": "string"
    }
  },
  "required": [
    "action",
    "url"
  ]
}
```
