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

# Count Properties

> Count an object's top-level properties.

The **Count Properties** action returns the number of enumerable top-level keys
in an object.

## Inputs

| Input      | Type   | Required | Description                        |
| ---------- | ------ | -------- | ---------------------------------- |
| **Object** | Object | Yes      | The object whose keys are counted. |

## Outputs

| Output    | Type   | Description                         |
| --------- | ------ | ----------------------------------- |
| **Count** | Number | The number of top-level properties. |

Nested fields are not counted separately. For
`{"name":"Ada","address":{"city":"London"}}`, the count is `2`.
