| bcs | VARCHAR(16777216) | BCS (Binary Canonical Serialization) encoded bytes of the object or event data, as a base64 or hex string. |
| checkpoint_digest | VARCHAR(16777216) | Hash digest of the Sui checkpoint. Alias for sui_checkpoint_digest. |
| checkpoint_sequence | NUMBER(38,0) | Monotonically increasing sequence number of the Sui checkpoint. Alias for sui_checkpoint_sequence used in models that drop the chain prefix. |
| checkpoint_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of when the Sui checkpoint was created. Alias for sui_checkpoint_timestamp. |
| event_seq | NUMBER(38,0) | Zero-based sequence number of this event within its transaction block. |
| transaction_block_digest | VARCHAR(16777216) | Base58-encoded digest of the Sui transaction block. Alias for sui_transaction_digest. |
| package_id | VARCHAR(16777216) | Object ID of the Sui Move package that emitted this event or executed this transaction. |
| parsed_json | VARIANT | Decoded JSON representation of the BCS-encoded event or object data. |
| sender | VARCHAR(16777216) | Address that sent or initiated this transaction or message. Alias for from_address or signer depending on chain — used in models that preserve the chain’s native field name. |
| transaction_block_status | VARCHAR(16777216) | Execution result of the transaction block: success or the failure reason. |
| transaction_module | VARCHAR(16777216) | Module of the transaction |
| type | VARCHAR(16777216) | The type of the position on the perpetual. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created in the database. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated in the database. |
| type_address | VARCHAR(16777216) | Move package address component of a fully-qualified type (e.g. 0x2 in 0x2::coin::Coin). |
| type_module | VARCHAR(16777216) | Move module name component of a fully-qualified type (e.g. coin in 0x2::coin::Coin). |
| type_struct | VARCHAR(16777216) | Struct name component of a fully-qualified Move type. |
| type_struct_full | VARCHAR(16777216) | Full struct identifier including generic parameters (e.g. Coin). |
| type_num_generics | NUMBER(19,0) | Number of generic type parameters in this Move type. |
| type_param0 | VARCHAR(134217728) | Full string of the first generic type parameter. |
| type_param0_address | VARCHAR(134217728) | Package address of the first generic type parameter. |
| type_param0_module | VARCHAR(134217728) | Module name of the first generic type parameter. |
| type_param0_struct | VARCHAR(134217728) | Struct name of the first generic type parameter. |
| type_param1 | VARCHAR(134217728) | Full string of the second generic type parameter. |
| type_param1_address | VARCHAR(134217728) | Package address of the second generic type parameter. |
| type_param1_module | VARCHAR(134217728) | Module name of the second generic type parameter. |
| type_param1_struct | VARCHAR(134217728) | Struct name of the second generic type parameter. |
| type_param2 | VARCHAR(134217728) | Full string of the third generic type parameter. |
| type_param2_address | VARCHAR(134217728) | Package address of the third generic type parameter. |
| type_param2_module | VARCHAR(134217728) | Module name of the third generic type parameter. |
| type_param2_struct | VARCHAR(134217728) | Struct name of the third generic type parameter. |