NexoraStack Tools
JSON Unflatten
Restore flattened key-path JSON back to nested structure.
Tool Interface
Functional explanation
Rebuilds nested JSON objects from flattened key-path structures.
- Restore pipeline-normalized data.
- Convert key-path exports back into object trees.
- Validate flatten and unflatten roundtrip behavior.
How to use
Convert flattened JSON key paths back into nested objects and arrays.
- Paste flattened JSON key-path object.
- Run unflatten conversion.
- Copy the restored nested JSON output.
Example
Input
{"user.name":"NexoraStack","user.roles[0]":"admin"}Output
{"user":{"name":"NexoraStack","roles":["admin"]}}Conflicting key paths should be resolved before reconstruction.
Common mistakes
- Combining incompatible path styles.
- Missing array indexes in keys that represent list items.
Output interpretation tips
- Check resulting array lengths against expectations.
- Run syntax validation after reconstruction.
FAQ
Which path format is supported?
Dot keys with bracket indexes are supported, for example user.name and items[0].id.