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

# dune.shot.dataset_spaces_view

> Snapshot governance spaces — DAO and protocol governance space metadata.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table description

The `dune.shot.dataset_spaces_view` table provides overviews of different governance spaces on Snapshot.

## Table Schema

| Column Name | Type    | Description                                                            |
| ----------- | ------- | ---------------------------------------------------------------------- |
| id          | varchar | Unique identifier (ENS name) of the Snapshot space                     |
| name        | varchar | Display name of the space                                              |
| deleted     | bigint  | Flag indicating if the space has been deleted (1 = deleted)            |
| flagged     | bigint  | Flag indicating if the space has been flagged for review (1 = flagged) |
| settings    | varchar | JSON-encoded space settings (strategies, voting params, admins, etc.)  |
| verified    | bigint  | Flag indicating if the space is verified (1 = verified)                |
| created\_at | bigint  | Unix timestamp when the space was created                              |
| updated\_at | bigint  | Unix timestamp of the last update to the space                         |

## Table Sample

<TableSample tableSchema="dune.shot" tableName="dataset_spaces_view" />
