Example representation: Workbook with a table (Beta)

View as Markdown

This documentation describes one or more private 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.

If you are interested in joining a limited test group and enabling this feature in your Sigma organization, contact Support or reach out to your Account Executive.

This is an example representation of a workbook, created using the get a workbook representation endpoint. Representations like this one can be used to create a workbook from code using the create a workbook from a representation 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 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.

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 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:

This example uses a table from the Sigma 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 single table element, sourced from a warehouse table.

To create this workbook in the Sigma UI:

  1. Go to the Home page.

  2. Select Create new > Workbook.

    A new workbook opens.

  3. From the Add element bar, select Data > Table.

  4. In the Select source modal, search for the table TRIPS in the EXAMPLES.BIKES schema.

  5. Select the table to add it to the workbook.

    The table appears in the workbook.

  6. In the document header, select Save as.

  7. Enter a name for the workbook.

  8. Select Save.

Get a code representation of this workbook

1workbookId: 3ee4e577-757a-49d2-b077-57741a373285
2name: table
3url: https://aws-api.sigmacomputing.com/org-name/workbook/table-JjtuSwuoOReVVwk04uD1WF
4documentVersion: 1
5latestDocumentVersion: 1
6ownerId: Ipb0LILcSmxdd6uZFfy2EJLR6N2nr
7folderId: 2cfd0815-2749-49b4-9a07-46684d13e7d0
8createdBy: Ipb0LILcSmxdd6uZFfy2EJLR6N2nr
9updatedBy: Ipb0LILcSmxdd6uZFfy2EJLR6N2nr
10createdAt: '2026-04-20T20:09:51.815Z'
11updatedAt: '2026-04-20T20:09:51.815Z'
12schemaVersion: 1
13pages:
14 - id: Ce7Jmi42Z8
15 name: Page 1
16 elements:
17 - id: n7DqXr54CY
18 kind: table
19 source:
20 connectionId: d6bfeea1-5da2-458c-9bcf-ec9400d24ceb
21 kind: warehouse-table
22 path:
23 - FUN
24 - BIKES
25 - TRIP
26 columns:
27 - id: Kc2wRqr9AM
28 formula: '[TRIP/Id]'
29 - id: OUfVeWtol6
30 formula: '[TRIP/Duration]'
31 - id: 3WGNOoCuRk
32 formula: '[TRIP/Start Date]'
33 - id: OL5FiZbf9R
34 formula: '[TRIP/Start Station Name]'
35 - id: mcRQvHSX8W
36 formula: '[TRIP/Start Station Id]'
37 - id: gBuJSGaS7u
38 formula: '[TRIP/End Date]'
39 - id: DDl9tS9exf
40 formula: '[TRIP/End Station Name]'
41 - id: qFZDYWH9UV
42 formula: '[TRIP/End Station Id]'
43 - id: b9Z52OGaJH
44 formula: '[TRIP/Bike Id]'
45 - id: YtjzMkzBzB
46 formula: '[TRIP/Subscription Type]'
47 - id: pqotLuvxde
48 formula: '[TRIP/Zip Code]'
49 order:
50 - Kc2wRqr9AM
51 - OUfVeWtol6
52 - 3WGNOoCuRk
53 - OL5FiZbf9R
54 - mcRQvHSX8W
55 - gBuJSGaS7u
56 - DDl9tS9exf
57 - qFZDYWH9UV
58 - b9Z52OGaJH
59 - YtjzMkzBzB
60 - pqotLuvxde
61layout: |
62 <?xml version="1.0" encoding="utf-8"?>
63 <Page type="grid" gridTemplateColumns="repeat(24, 1fr)" gridTemplateRows="auto" id="Ce7Jmi42Z8">
64 <LayoutElement elementId="n7DqXr54CY" gridColumn="1 / 25" gridRow="1 / 21"/>
65 </Page>

Representing tables

1...
2id: n7DqXr54CY
3kind: table
4source:
5 connectionId: d6bfeea1-5da2-458c-9bcf-ec9400d24ceb
6 kind: warehouse-table
7 path:
8 - FUN
9 - BIKES
10 - TRIP
11columns:
12- id: Kc2wRqr9AM
13 formula: '[TRIP/Id]'
14- id: OUfVeWtol6
15 formula: '[TRIP/Duration]'
16- id: 3WGNOoCuRk
17 formula: '[TRIP/Start Date]'
18- id: OL5FiZbf9R
19 formula: '[TRIP/Start Station Name]'
20- id: mcRQvHSX8W
21 formula: '[TRIP/Start Station Id]'
22- id: gBuJSGaS7u
23 formula: '[TRIP/End Date]'
24- id: DDl9tS9exf
25 formula: '[TRIP/End Station Name]'
26- id: qFZDYWH9UV
27 formula: '[TRIP/End Station Id]'
28- id: b9Z52OGaJH
29 formula: '[TRIP/Bike Id]'
30- id: YtjzMkzBzB
31 formula: '[TRIP/Subscription Type]'
32- id: pqotLuvxde
33 formula: '[TRIP/Zip Code]'
34order:
35- Kc2wRqr9AM
36- OUfVeWtol6
37- 3WGNOoCuRk
38- OL5FiZbf9R
39- mcRQvHSX8W
40- gBuJSGaS7u
41- DDl9tS9exf
42- qFZDYWH9UV
43- b9Z52OGaJH
44- YtjzMkzBzB
45- pqotLuvxde
46...