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

# sui.objects

> Sui object data — owned and shared objects with type, version, and ownership info.

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 `sui.objects` table contains data about Sui objects, which are the fundamental units of data storage on the Sui blockchain. Unlike traditional blockchains that use key-value stores, Sui uses an object-centric model where data is stored as objects with unique identifiers. This table is partitioned by date.

## Column Descriptions

| **Column**                   | **Type**      | **Description**                                                                |
| ---------------------------- | ------------- | ------------------------------------------------------------------------------ |
| **object\_id**               | binary        | Binary representation of the unique identifier of the object                   |
| **version**                  | decimal(20,0) | Version number of the object                                                   |
| **digest**                   | string        | Hash digest of the object contents                                             |
| **type\_**                   | string        | Type of the object (e.g., "0x2::coin::Coin\<0x2::sui::SUI>")                   |
| **checkpoint**               | decimal(20,0) | Checkpoint sequence number containing this object operation                    |
| **epoch**                    | decimal(20,0) | Epoch number when the object was created/updated                               |
| **timestamp\_ms**            | decimal(20,0) | Unix timestamp in milliseconds when the object was created/updated             |
| **date**                     | date          | Date of when the object was created/updated                                    |
| **owner\_type**              | string        | Type of ownership (e.g., "AddressOwner", "ObjectOwner", "Shared", "Immutable") |
| **owner\_address**           | binary        | Binary representation of the owner address (if applicable)                     |
| **object\_status**           | string        | Status of the object (e.g., "Created", "Mutated", "Deleted")                   |
| **initial\_shared\_version** | decimal(20,0) | Initial shared version for shared objects                                      |
| **previous\_transaction**    | string        | Hash of the previous transaction that modified this object                     |
| **has\_public\_transfer**    | boolean       | Whether the object can be publicly transferred                                 |
| **is\_consensus**            | boolean       | Whether this is a consensus object                                             |
| **storage\_rebate**          | decimal(20,0) | Storage rebate for this object                                                 |
| **bcs**                      | string        | Binary Canonical Serialization of the object data                              |
| **coin\_type**               | string        | Type of coin if this object is a coin                                          |
| **coin\_balance**            | decimal(20,0) | Balance of the coin if this object is a coin                                   |
| **struct\_tag**              | string        | Struct tag of the object                                                       |
| **object\_json**             | string        | JSON representation of the object data                                         |
| **bcs\_length**              | decimal(20,0) | Length of the BCS data in bytes                                                |
| **\_updated\_at**            | timestamp     | Last time the record was updated                                               |
| **\_ingested\_at**           | timestamp     | Time when the record was ingested                                              |

## Table Sample

<TableSample tableSchema="sui" tableName="objects" />
