> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mora.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Export workspace

> Download your organization's datasets, knowledge, and members as CSV.

The **Export** page downloads the metadata your organization has authored in Mora — dataset SQL, datasource knowledge, and the member list — as one CSV file per section.

This is not a warehouse data export. Query results live with the dataset or chart that produced them. To download those rows, use [Download CSV](/datasets/export) from a chart.

## Accessing export

Open **Settings → Export** from the sidebar.

Any member of the organization can export. The files you get follow the same visibility rules as the rest of Mora: you only receive datasets you can already see.

## Choosing sections

Select one or more sections, then click **Export**. Each selected section downloads as its own file. Browsers sometimes delay back-to-back downloads, so if you pick several sections, wait a moment for every file to appear.

| Section                  | What's in the file                                                                |
| ------------------------ | --------------------------------------------------------------------------------- |
| **Datasets**             | Every dataset you can see, including its published SQL and any unpublished draft. |
| **Datasource knowledge** | The AI-generated summary and saved insights for each datasource.                  |
| **Members**              | Everyone in the organization, with their role and join date.                      |

Files are named `{org-slug}-{section}-{date}.csv`, for example `mora-datasets-2026-09-09.csv`. The date uses your [profile timezone](/account/profile).

## Datasets

The datasets file includes shared organization datasets plus any **private** datasets you own. Other members' private datasets are not included. See [Privacy](/datasets/privacy).

| Column                      | Description                                    |
| --------------------------- | ---------------------------------------------- |
| `id`                        | Dataset ID.                                    |
| `name`                      | Dataset name.                                  |
| `datasource`                | Name of the datasource the query runs against. |
| `folder`                    | Catalog folder, if the dataset is filed.       |
| `owner` / `owner_email`     | Dataset owner.                                 |
| `private`                   | Whether the dataset is private to its owner.   |
| `verified`                  | Whether the dataset is marked verified.        |
| `status`                    | Latest publish status.                         |
| `query`                     | Published SQL.                                 |
| `draft_query`               | Unpublished draft SQL, if any.                 |
| `created_at` / `updated_at` | Timestamps.                                    |

Rows and result columns from running that SQL are not in this file.

## Datasource knowledge

Knowledge and insights are flattened into one file, distinguished by a `kind` column (`knowledge` or `insight`).

| Column       | Description                                                  |
| ------------ | ------------------------------------------------------------ |
| `id`         | Knowledge or insight ID.                                     |
| `datasource` | Datasource the note belongs to.                              |
| `kind`       | `knowledge` (exploration summary) or `insight` (saved note). |
| `content`    | The text of the summary or insight.                          |
| `author`     | Who saved the insight. Empty for knowledge summaries.        |
| `created_at` | Timestamp.                                                   |

## Members

| Column      | Description                        |
| ----------- | ---------------------------------- |
| `id`        | Membership ID.                     |
| `name`      | Member display name.               |
| `email`     | Member email.                      |
| `role`      | `owner`, `admin`, or `member`.     |
| `joined_at` | When they joined the organization. |

## What is not included

* Query results and warehouse rows — download those from a [dataset or chart](/datasets/export).
* Datasource credentials, connection secrets, API keys, and other authentication material.

## Related

* [Export dataset results](/datasets/export)
* [Members & invitations](/account/members)
* [Dataset privacy](/datasets/privacy)
* [Organization settings](/account/organization)
