> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://help.sigmacomputing.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://help.sigmacomputing.com/_mcp/server.

# Example representation: Workbook with a text element (Beta)

> Example Sigma code representation of a workbook with a text element.

This documentation describes one or more public beta features that are in development. Beta features are subject to quick, iterative changes; therefore the current user experience in the Sigma service can differ from the information provided in this page.

This page should not be considered official published documentation until Sigma removes this notice and the beta flag on the corresponding feature(s) in the Sigma service. For the full beta feature disclaimer, see [Beta features](/docs/sigma-product-releases#beta-features).

This is an example representation of a workbook, retrieved using the [Get a workbook](/reference/get-workbook) endpoint with the query parameter `includeContents=true`. Representations like this one can be used to create a workbook from code using the [Create a workbook](/reference/create-workbook) endpoint. Each page in this example library includes the code representation of the workbook and step-by-step instructions to create it in the Sigma UI.

Consult this example and others in the [Workbook representation example library](/docs/workbook-representation-example-library) to:

* Troubleshoot the formatting of a particular feature in code representation
* Relate a feature from the Sigma UI to its representation in code
* Provide context to AI tools used to create workbooks from code

This example representation cannot be used as-is. All identifying details, such as IDs, names, and URLs, have been replaced with randomized ID values or generic substitutions. The format of these contents, like the length of ID values, is preserved for demonstrative purposes. However, this representation cannot be directly used without modification to the base URL, connection details, and more. For more information, see [Create and manage workbooks from code](/docs/manage-workbooks-as-code).

## System and user requirements

To complete the steps in this example, you must meet the user requirements listed below for creating the workbook in the UI and creating it from code.

The ability to create this workbook in the Sigma UI requires the following:

* You must be assigned an [account type](/docs/account-type-and-license-overview) with the **Create, edit, and publish workbooks** permission enabled.
* You must have access to a connection to a data platform.

The ability to create a workbook from code requires the following:

* You must be assigned an [account type](/docs/account-type-and-license-overview) with the **Create, edit, and publish workbooks** permission enabled.
* You must have developer credentials for the Sigma API. For more information, see [Get started with the Sigma REST API](/reference/get-started-sigma-api).

This example uses a table from the [Sigma Sample Connection](/docs/sigmas-sample-connection). Your organization might have disabled access to the Sigma sample connection. If so, you can contact an admin to enable it, or use a table from another connection to follow along with this example.

## Create the example workbook in the Sigma UI

This example shows a simple workbook with a text element.

To create this workbook in the Sigma UI:

1. Go to the **Home** page.

2. Select ![](https://sigma-docs-screenshots.s3.us-west-2.amazonaws.com/Icons/button-add.svg) **Create new** > **Workbook**.

   A new workbook opens.

3. In the add element bar, select **UI** > **Text**.

   A new text element appears on the workbook page.

4. In the text element, paste the following text:

   ```text
   Heading
   Subtitle
   Subheading
   This is a body of contents.
   ```

5. Style the text `Heading` as a **Large heading** and change the **Text color** to `#0059EB`.

6. Style the text `Subheading` as a **Small heading** and change the **Highlight color** to `#BBBBBB`

7. In the document header, select **Save as**.

8. Enter a name for the workbook, such as `divider`.

9. Select **Save**.

## Get a code representation of this workbook

To get a representation of this workbook, follow the steps in [Get the code representation of a workbook](/docs/get-the-code-representation-of-a-workbook).

The code representation of this workbook appears like the following:

#### YAML representation

```yaml
workbookId: b0b04d28-74b1-4192-b838-e3c4e6df6084
workbookUrlId: 6wkIRXo7tE4oMai1vDd08U
createdBy: zgzXpTRVbfX4ZE9TEm9q9fUsfXZ5o
updatedBy: zgzXpTRVbfX4ZE9TEm9q9fUsfXZ5o
createdAt: '2026-04-30T18:51:22.322Z'
updatedAt: '2026-04-30T19:40:51.038Z'
name: text-element
url: https://aws-api.sigmacomputing.com/org-name/workbook/6wkIRXo7tE4oMai1vDd08U
path: My Documents/<folder-name>
latestVersion: 2
ownerId: zgzXpTRVbfX4ZE9TEm9q9fUsfXZ5o
isArchived: false
contents:
  schemaVersion: 1
  elements:
    - id: EYUKeiSFUU
      kind: text
      body: |-
        # <span style="color: var(--colors-fillPrimary)">Heading</span>

        Subtitle

        ### <span style="background-color: var(--colors-borderNeutral)">Subheading</span>

        This is a body of contents.
  pages:
    - id: uJ8JnrrSoJ
      name: Page 1
  kind: workbook
  layout: |
    <?xml version="1.0" encoding="utf-8"?>
    <Page type="grid" gridTemplateColumns="repeat(24, 1fr)" gridTemplateRows="auto" id="uJ8JnrrSoJ">
      <Element elementId="EYUKeiSFUU" gridColumn="1 / 13" gridRow="1 / 3"/>
    </Page>
documentVersion: 2

```

## Representing text elements

#### Text element representation

```yaml
...
id: EYUKeiSFUU
kind: text
body: |-
  # <span style="color: var(--colors-fillPrimary)">Heading</span>

  Subtitle

  ### <span style="background-color: var(--colors-borderNeutral)">Subheading</span>

  This is a body of contents.
...
```