# Operations (sample payloads)

## Main operations

### Break

Break out of the loop (execute the first step after the loop)
**Sample Input**

```json
{}
```

**Sample Output**

```json
{}
```

### Continue

Interrupt current loop iteration and continue to the next one
**Sample Input**

```json
{}
```

**Sample Output**

```json
{}
```
