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

# beacon.raw

> Raw beacon chain data — unprocessed consensus layer records.

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 `beacon.raw` table stores raw data about blocks proposed on the Beacon network. This table is partitioned by block\_date.

## Column Descriptions

| **Column**      | **Type**  | **Description**                                                |
| --------------- | --------- | -------------------------------------------------------------- |
| **epoch**       | long      | Epoch number during which the block was proposed.              |
| **block\_slot** | long      | Slot number within the epoch when the block was proposed.      |
| **block\_time** | timestamp | Timestamp indicating when the block was included in the chain. |
| **block\_date** | date      | Date corresponding to the block\_time.                         |

## Table Sample

<TableSample tableSchema="beacon" tableName="raw" />
