pub fn flatten_object(
object: PipelineMap,
max_nested_levels: usize,
) -> Result<PipelineMap>
Expand description
Consumes the JSON object and consumes it into a single-level object.
The max_nested_levels
parameter is used to limit the nested levels of the JSON object.
The error will be returned if the nested levels is greater than the max_nested_levels
.