*** id: 5f22c93e-93cd-46e6-9f31-fcc1c0166467 title: label slug: /reference/label description: Mark any point of the SWML section with a label. max-toc-depth: 3 ---------------- Mark any point of the SWML section with a label so that [`goto`](/docs/swml/reference/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 } } ] } } ```