| ACCOUNT_ID | TEXT | The address of the account. The address is the account’s public key encoded in base32. All account addresses start with a ‘G’. |
| BALANCE | FLOAT | The number of units of XLM held by the account. |
| BUYING_LIABILITIES | FLOAT | The sum of all buy offers owned by this account for XLM only. |
| SELLING_LIABILITIES | FLOAT | The sum of all sell offers owned by this account for XLM only. |
| SEQUENCE_NUMBER | NUMBER | The account’s current sequence number. The sequence number controls operations applied to an account. Operations must submit a unique sequence number that is incremented by 1 in order to apply the operation to the account so that account changes will not collide within a ledger. |
| NUM_SUBENTRIES | NUMBER | The total number of ledger entries connected to this account. Ledger entries include: trustlines, offers, signers, and data entries. (Claimable balances are counted under sponsoring entries, not subentries). Any newly created trustline, offer, signer or data entry will increase the number of subentries by 1. Accounts may have up to 1,000 subentries. |
| INFLATION_DESTINATION | TEXT | Deprecated: The account address to receive an inflation payment when they are disbursed on the network. |
| FLAGS | NUMBER | Denotes the enabling and disabling of certain asset issuer privileges. |
| HOME_DOMAIN | TEXT | The domain that hosts this account’s stellar.toml file. |
| MASTER_WEIGHT | NUMBER | The weight of the master key, which is the private key for this account. If a master key is ‘0’, the account is locked and cannot be used. |
| THRESHOLD_LOW | NUMBER | The sum of the weight of all signatures that sign a transaction for the low threshold operation. The weight must exceed the set threshold for the operation to succeed. |
| THRESHOLD_MEDIUM | NUMBER | The sum of the weight of all signatures that sign a transaction for the medium threshold operation. The weight must exceed the set threshold for the operation to succeed. |
| THRESHOLD_HIGH | NUMBER | The sum of the weight of all signatures that sign a transaction for the high threshold operation. The weight must exceed the set threshold for the operation to succeed. |
| LAST_MODIFIED_LEDGER | NUMBER | The ledger sequence number when the ledger entry was last modified. Deletions do not count as a modification and will report the prior modification sequence number. |
| LEDGER_ENTRY_CHANGE | NUMBER | Code that describes the ledger entry change type that was applied to the ledger entry. |
| DELETED | BOOLEAN | Indicates whether the ledger entry (account, claimable balance, trust line, offer, liquidity pool) has been deleted or not. Once an entry is deleted, it cannot be recovered. |
| SPONSOR | TEXT | The account address of the sponsor who is paying the reserves for this ledger entry. |
| NUM_SPONSORED | NUMBER | The number of reserves sponsored for this account (meaning another account is paying for the minimum balance). Sponsored entries do not incur any reserve requirement on the account that owns the entry. |
| NUM_SPONSORING | NUMBER | The number of reserves sponsored by this account. Entries sponsored by this account incur a reserve requirement. |
| SEQUENCE_LEDGER | NUMBER | The unsigned 32-bit ledger number of the sequence number’s age. |
| SEQUENCE_TIME | TIMESTAMP_NTZ | The UNIX timestamp of the sequence number’s age. |
| CLOSED_AT | TIMESTAMP_NTZ | Timestamp when the ledger was closed and committed to the network. Ledgers are expected to close ~every 5 seconds. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | A clone of closed_at for join convenience. |
| LEDGER_SEQUENCE | NUMBER | The sequence number of the ledger. |
| FACT_ACCOUNTS_ID | TEXT | Unique primary key for the dimension table, used as the main identifier for each record. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | Timestamp when this record was inserted. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | Timestamp when this record was last modified. |