Processors
Flatten Fields Processor
Recursively collapse nested JSON objects into a single level, joining parent and child keys with a configurable delimiter.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Recursively collapse nested JSON objects into a single level, joining parent and child keys with a configurable delimiter.
| Option | Description | Example |
|---|---|---|
| Fields | The field or fields to flatten. | .foo |
| Flatten Options | Specify the delimiter to use for combining field names with the flattened data. | _ |
{
"foo": {
"bar": {
"baz": 1,
"qux": "quux"
},
"core": [
1,
2,
3
]
}
}
| Option | Value |
|---|---|
| Field | .foo |
| Delimiter | _ |
{
"foo_bar_baz": 1,
"foo_bar_qux": "quux",
"foo_core": [
1,
2,
3
]
}
Was this page helpful?
