> ## 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.

# Parse JSON

> Convert JSON text into a workflow value.

## Input

| Input    | Type   | Required | Description      |
| -------- | ------ | -------- | ---------------- |
| **JSON** | String | Yes      | Valid JSON text. |

## Output

| Output     | Type | Description                                         |
| ---------- | ---- | --------------------------------------------------- |
| **Parsed** | Any  | The object, list, string, number, Boolean, or null. |

```json theme={null}
{ "customer": { "id": 42 }, "active": true }
```

The example produces an object whose `customer.id` is the number `42`.

<Warning>
  JSON does not allow comments, trailing commas, or single-quoted strings. A
  syntax error fails the action.
</Warning>
