Use this reference to understand how the Simplified Exporter structures output files. It covers the two export modes — full table exports and incremental exports — along with chunking behaviour, the JSONL format, metadata headers, and standard fields. The exporter supports ActiveObjects (AO) tables, shared core tables, and ID mapping files.
Export files use JSONL (Newline-Delimited JSON) format for efficient streaming and processing.
The first line of every export file contains metadata about the export:
| Field | Type | Value / Description |
|---|---|---|
columns | array of objects | List of column definitions (see below) |
columns[].name | string | Name of the column |
columns[].type | string | Data type of the column (e.g. varchar, boolean, number) |
columns[].size | integer | Column size or precision; -1 indicates unlimited |
columns[].nullable | boolean | Whether the column accepts null values |
primaryKeys | array of strings | List of primary key column names (e.g. ["id"]) |
table | string | Name of the exported table/entity |
rowCount | integer | Total number of data records (excluding metadata row) |
TYPE | string | METADATA - To indicate row is METADATA |
Example Metadata line (formatted for readability)
1 2{"table":"AO_6FF49D_DOMAIN_SCAN","columns":[ {"name":"BLOCKED_DOMAINS_COUNT","type":"number","size":64,"nullable":true}, {"name":"DISTINCT_DOMAINS_COUNT","type":"number","size":64,"nullable":true}, {"name":"EXECUTION_TIME","type":"number","size":64,"nullable":true}, {"name":"FINISHED_AT","type":"number","size":64,"nullable":true}, {"name":"ID","type":"varchar","size":-1,"nullable":false}, {"name":"LOOKUP_METHOD","type":"varchar","size":-1,"nullable":true}, {"name":"STARTED_AT","type":"number","size":64,"nullable":true}, {"name":"STATUS","type":"varchar","size":-1,"nullable":true}, {"name":"DELETED","type":"boolean","size":1,"nullable":false}, {"name":"TXN_SEQUENCE","type":"integer","size":19,"nullable":false}], "primaryKeys":["ID"],"rowCount":0,"TYPE":"METADATA"}
Each subsequent line is a complete data record. There is no TYPE field for data records.
Example Data Record line (formatted for readability)
1 2{"BLOCKED_DOMAINS_COUNT":0,"DISTINCT_DOMAINS_COUNT":1,"EXECUTION_TIME":3923,"FINISHED_AT":1773982903301, "ID":"821a09b3-8593-4c4b-a636-e483564f4d01","LOOKUP_METHOD":"UMS","STARTED_AT":1773982899378, "STATUS":"FINISHED","DELETED":false,"TXN_SEQUENCE":0}
Note: Exports include DELETED and TXN_SEQUENCE values for all data records.
Files may be a full table export for an initial snapshot, or incremental changes after the snapshot. The file format
is identical for both types of exports, the only difference is the incremental will make use of the DELETED and
TXN_SEQUENCE columns to flag changes.
Complete snapshot of all table data at export time.
DELETED and TXN_SEQUENCE fieldsDELETED: false and TXN_SEQUENCE: 0 for all recordsCaptures only changes since last export using Change Data Capture.
DELETED indicates operation type, TXN_SEQUENCE tracks change orderWhen consuming incremental export files, the row with the highest TXN_SEQUENCE value for a key, should be retained. Each row
is a complete data record for that key in the table. There is no need to retain data for earlier TXN_SEQUENCE rows
for that key, or reconstruct changes.
Exports are automatically split into multiple files to manage file sizes:
Every exported record includes two standard fields:
falsetrue for DELETE operations, false for INSERT/UPDATE0Rate this page: