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

bin+lib flatten-serde-json

Flatten serde-json objects like elastic search

1 unstable release

0.1.0 Feb 23, 2022

#2658 in Command line utilities

Download history 96/week @ 2023-12-16 156/week @ 2023-12-23 106/week @ 2023-12-30 108/week @ 2024-01-06 113/week @ 2024-01-13 218/week @ 2024-01-20 118/week @ 2024-01-27 209/week @ 2024-02-03 385/week @ 2024-02-10 380/week @ 2024-02-17 266/week @ 2024-02-24 442/week @ 2024-03-02 368/week @ 2024-03-09 424/week @ 2024-03-16 224/week @ 2024-03-23 522/week @ 2024-03-30

1,675 downloads per month

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

~360–760KB
~17K SLoC