> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Is Text?

> Check whether a workflow value is text.

The **Is Text?** action checks the runtime type of any value. It returns `true`
only for strings; it does not convert the value first.

## Inputs

| Input     | Type | Required | Description         |
| --------- | ---- | -------- | ------------------- |
| **Value** | Any  | Yes      | The value to check. |

## Outputs

| Output     | Type    | Description                                       |
| ---------- | ------- | ------------------------------------------------- |
| **Result** | Boolean | `true` when **Value** is text; otherwise `false`. |

For example, `"42"` returns `true`, while the number `42` returns `false`.
