Module json

Module json 

Source
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.