| BLOCK_NUMBER | NUMBER | BLOCK_NUMBER column |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block was produced. |
| TX_HASH | TEXT | Transaction hash is a unique 66-character identifier that is generated when a transaction is executed. |
| VERSION | NUMBER | The version also know as the height of the transactions that have been executed on the Movement blockchain. The first transaction in the blockchain has a version of 0. The version number is incremented by 1 for each transaction that is executed on the blockchain. |
| SUCCESS | BOOLEAN | The boolean value indicating whether the transaction was successful or not. |
| TX_TYPE | TEXT | The type of the transaction. Values will be one of “blockmetadatatransaction”,“statecheckpointtransaction”,“user_transaction”. |
| SENDER | TEXT | Sender is the address of the originator account for a transaction. A transaction must be signed by the originator. |
| PAYLOAD_FUNCTION | TEXT | The function that is being called in the transaction payload. |
| CHANGE_INDEX | NUMBER | Unique identifier for the change. This is a monotonically increasing integer that is incremented for each change. This is useful for determining the order of changes. |
| CHANGE_DATA | VARIANT | The “data” object within this change. |
| CHANGE_TYPE | TEXT | The “type” object from within this change. Values are: deleteresource, deletetableitem, writemodule, writeresource, writetable_item. |
| ADDRESS | TEXT | The top level address for this change. |
| HANDLE | TEXT | The top level handle for this change. |
| INNER_CHANGE_TYPE | TEXT | The full three-part descriptive change type from change. The inner change type consists of the changeaddress :: changemodule :: change_resource. |
| CHANGE_ADDRESS | TEXT | The first segment of the inner change type |
| CHANGE_MODULE | TEXT | The second segment of the inner change type |
| CHANGE_RESOURCE | TEXT | The third segment of the inner change type |
| KEY | TEXT | The key value for the writetableitem change |
| VALUE | TEXT | The value for the writetableitem change |
| STATE_KEY_HASH | TEXT | STATE_KEY_HASH column |
| FACT_CHANGES_ID | TEXT | The unique identifier for each row in the table. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was inserted into the table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was last modified. |