#json-object #elasticsearch #flatten #json #serde-json #elastic #search

bin+lib flatten-serde-json

Flatten serde-json objects like elastic search

1 unstable release

0.1.0 Feb 23, 2022

#7 in #flatten

Download history 205/week @ 2024-07-20 217/week @ 2024-07-27 545/week @ 2024-08-03 471/week @ 2024-08-10 401/week @ 2024-08-17 667/week @ 2024-08-24 812/week @ 2024-08-31 615/week @ 2024-09-07 1037/week @ 2024-09-14 1034/week @ 2024-09-21 1111/week @ 2024-09-28 2325/week @ 2024-10-05 1427/week @ 2024-10-12 872/week @ 2024-10-19 1277/week @ 2024-10-26 1195/week @ 2024-11-02

5,246 downloads per month
Used in 2 crates (via border-mlflow-tracking)

WTFPL license

10KB
241 lines

Flatten serde Json

This crate flatten serde_json Object in a format similar to elastic search.

Examples

There is nothing to do

{
  "id": "287947",
  "title": "Shazam!",
  "release_date": 1553299200,
  "genres": [
    "Action",
    "Comedy",
    "Fantasy"
  ]
}

Flattens to:

{
  "id": "287947",
  "title": "Shazam!",
  "release_date": 1553299200,
  "genres": [
    "Action",
    "Comedy",
    "Fantasy"
  ]
}

Objects

{
  "a": {
    "b": "c",
    "d": "e",
    "f": "g"
  }
}

Flattens to:

{
  "a.b": "c",
  "a.d": "e",
  "a.f": "g"
}

Array of objects

{
  "a": [
    { "b": "c" },
    { "b": "d" },
    { "b": "e" },
  ]
}

Flattens to:

{
  "a.b": ["c", "d", "e"],
}

Array of objects with normal value in the array

{
  "a": [
    42,
    { "b": "c" },
    { "b": "d" },
    { "b": "e" },
  ]
}

Flattens to:

{
  "a": 42,
  "a.b": ["c", "d", "e"],
}

Array of objects of array of objects of ...

{
  "a": [
    "b",
    ["c", "d"],
    { "e": ["f", "g"] },
    [
        { "h": "i" },
        { "e": ["j", { "z": "y" }] },
    ],
    ["l"],
    "m",
  ]
}

Flattens to:

{
  "a": ["b", "c", "d", "l", "m"],
  "a.e": ["f", "g", "j"],
  "a.h": "i",
  "a.e.z": "y",
}

Collision between a generated field name and an already existing field

{
  "a": {
    "b": "c",
  },
  "a.b": "d",
}

Flattens to:

{
  "a.b": ["c", "d"],
}

Dependencies

~0.5–1MB
~20K SLoC