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

> Sui wrapped object records — objects contained within other objects.

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.wrapped_object` table contains data about wrapped objects on the Sui blockchain. Wrapped objects are objects that have been wrapped by another object, creating a hierarchical ownership structure. This table tracks the wrapping relationships and metadata. This table is partitioned by date.

## Column Descriptions

| **Column**                | **Type**      | **Description**                                                                                     |
| ------------------------- | ------------- | --------------------------------------------------------------------------------------------------- |
| **object\_id**            | binary        | Binary representation of the unique identifier of the wrapped object                                |
| **root\_object\_id**      | binary        | Binary representation of the unique identifier of the root object that contains this wrapped object |
| **root\_object\_version** | decimal(20,0) | Version of the root object                                                                          |
| **checkpoint**            | decimal(20,0) | Checkpoint sequence number containing this wrapping operation                                       |
| **epoch**                 | decimal(20,0) | Epoch number when the object was wrapped                                                            |
| **timestamp\_ms**         | decimal(20,0) | Unix timestamp in milliseconds when the object was wrapped                                          |
| **date**                  | date          | Date of when the object was wrapped                                                                 |
| **json\_path**            | string        | JSON path to the wrapped object within the root object                                              |
| **struct\_tag**           | string        | Struct tag of the wrapped object                                                                    |
| **\_updated\_at**         | timestamp     | Last time the record was updated                                                                    |
| **\_ingested\_at**        | timestamp     | Time when the record was ingested                                                                   |

## Table Sample

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