object DataExportFile
Fields
| Field | Type | Description |
|---|---|---|
table_name | String | Name of the table/dataset. |
signed_url | String | Signed URL to download the file. |
created_at | ISODateTime | Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted. |
size | BigInt | Size of the file in bytes. |
export_type | DataExportType | Whether this file is a full or delta export. |
run_timestamp | ISODateTime | UTC timestamp of the LakeHero run that produced this file. |
Referenced By
- LakeheroDataExport Type
Example
{
"table_name": "orders",
"signed_url": "https://example.com/downloads/inventory-export.csv?signature=abc",
"created_at": "2026-07-09T15:30:00Z",
"size": 2048,
"export_type": "{id: \"RGF0YUV4cG9ydFR5cGU6MTIzNA==\"}",
"run_timestamp": "2026-07-09T15:30:00Z"
}