> ## 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_votes_view

> Snapshot votes — individual voting records with choice, voting power, and timestamp.

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_votes_view` table provides insights into votes cast on proposals, highlighting voting patterns and outcomes.

## Table Schema

| Column Name      | Type      | Description                                                                  |
| ---------------- | --------- | ---------------------------------------------------------------------------- |
| cb               | bigint    | Internal cursor/batch identifier                                             |
| id               | varbinary | Unique identifier of the vote                                                |
| vp               | double    | Total voting power used for this vote                                        |
| app              | varchar   | Application or client used to cast the vote                                  |
| ipfs             | varchar   | IPFS hash of the vote data                                                   |
| space            | varchar   | Snapshot space (DAO) the vote was cast in                                    |
| voter            | varbinary | Address of the voter                                                         |
| choice           | varchar   | The choice(s) selected by the voter (JSON-encoded for weighted/ranked votes) |
| reason           | varchar   | Optional text reason provided by the voter                                   |
| created          | bigint    | Unix timestamp when the vote was cast                                        |
| metadata         | varchar   | Additional metadata associated with the vote                                 |
| proposal         | varbinary | Identifier of the proposal being voted on                                    |
| vp\_state        | varchar   | State of voting power calculation (e.g. `final`)                             |
| vp\_by\_strategy | varchar   | Breakdown of voting power by each strategy (JSON-encoded)                    |

## Table Sample

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