Expand description
JSON ingestion implementation.
Supported inputs:
- A JSON array of objects:
[{"a":1}, {"a":2}] - Newline-delimited JSON (NDJSON):
{"a":1}\n{"a":2}\n
Nested fields are supported using dot paths in schema field names (e.g. user.name).
Functionsยง
- ingest_
json_ from_ path - Ingest JSON into an in-memory
DataSet. - ingest_
json_ from_ str - Ingest JSON from an in-memory string into a
DataSet.