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

# cardano.gov_action_proposal_status

> Description of the gov_action_proposal_status table on Dune

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

Tracks the current status and voting statistics for Cardano governance proposals. Each row represents the latest state of a governance action, including whether it has been ratified, expired, or is still active, along with aggregated voting statistics broken down by voter role.

## Column Descriptions

| **Column**                | **Description**                                                                | **Type**  |
| ------------------------- | ------------------------------------------------------------------------------ | --------- |
| **gov\_action\_tx\_hash** | The hash of the transaction that submitted the governance proposal.            | varchar   |
| **gov\_action\_index**    | The index of the governance proposal within its submission transaction.        | integer   |
| **proposal\_type**        | The type of governance action (e.g., ParameterChange, TreasuryWithdrawals).    | varchar   |
| **status**                | The current status of the proposal (e.g., Active, Ratified, Expired, Enacted). | varchar   |
| **voting\_stats**         | JSON-encoded voting statistics including vote counts by role (DRep, SPO, CC).  | varchar   |
| **epoch**                 | The epoch as of which this status snapshot applies.                            | integer   |
| **\_updated\_at**         | The time when this record was last updated.                                    | timestamp |
| **\_ingested\_at**        | The time when this record was ingested into Dune.                              | timestamp |

## Table Sample

<TableSample tableSchema="cardano" tableName="gov_action_proposal_status" />
