licence crates.io docs.rs ci

Robust Rust library for flattening JSON objects

Given a JSON object it produces another one with all the nested objects and arrays flattened. The string used to separate the concatenated keys, and the way the arrays are formatted can be configured.

Notes

Usage

In your Cargo.toml

[dependencies] flatten-json-object = "0.6.0"

Example

```rust use flattenjsonobject::ArrayFormatting; use flattenjsonobject::Flattener; use serde_json::json;

let obj = json!({ "a": { "b": [1, 2.0, "c", null, true, {}, []], "" : "mykeyisempty" }, "" : "mykeyisalsoempty" }); asserteq!( Flattener::new() .setkeyseparator(".") .setarrayformatting(ArrayFormatting::Surrounded { start: "[".tostring(), end: "]".tostring() }) .setpreserveemptyarrays(false) .setpreserveemptyobjects(false) .flatten(&obj)?, json!({ "a.b[0]": 1, "a.b[1]": 2.0, "a.b[2]": "c", "a.b[3]": null, "a.b[4]": true, "a.": "mykeyisempty", "": "mykeyisalso_empty", }) ); ```

A trivial example that reads JSON from stdin and outputs the converted flat JSON to stdout can be found in examples/from_stdin.rs. To run it execute cargo run --example from_stdin.