> ## 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 Empty?

> Check whether an object has no top-level properties.

The **Is Empty?** action returns `true` when an object has zero enumerable
top-level keys.

## Inputs

| Input      | Type   | Required | Description          |
| ---------- | ------ | -------- | -------------------- |
| **Object** | Object | Yes      | The object to check. |

## Outputs

| Output     | Type    | Description                                            |
| ---------- | ------- | ------------------------------------------------------ |
| **Result** | Boolean | `true` when the object has no keys; otherwise `false`. |

`{}` is empty. `{"value": null}` is not empty because it still has the `value`
property.
