> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# label

> Mark any point of the SWML section with a label.

Mark any point of the SWML section with a label so that [`goto`](/docs/swml/reference/calling/goto) can jump to it.

## **Properties**

Mark any point of the SWML section with a label so that `goto` can jump to it.

## **Examples**

```yaml
version: 1.0.0
sections:
  main:
    - label: foo
    - play:
        url: 'say: This speech will be repeated 4 times.'
    - goto:
        label: foo
        max: 3
```

```json
{
  "version": "1.0.0",
  "sections": {
    "main": [
      {
        "label": "foo"
      },
      {
        "play": {
          "url": "say: This speech will be repeated 4 times."
        }
      },
      {
        "goto": {
          "label": "foo",
          "max": 3
        }
      }
    ]
  }
}
```