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

# Step

> A block that represents a step in a process or workflow

## Basic Example

```json theme={null}
{
  "type": "step",
  "elements": []
}
```

## Properties

<ParamField path="type" type="string" required="true">
  Identifies this as a step block

  Must be <code>step</code>
</ParamField>

<ParamField path="elements" type="array" required="true">
  Array of block elements contained within this step
</ParamField>

## Usage Notes

* This element is part of the BlockKit system for building dynamic user interfaces
* All properties marked as **(required)** must be included in your JSON structure
* Optional properties can be omitted and will use their default values when applicable
