1. Reconstructing User Profiles
Backend DeveloperBackground
I received a flat list of user attributes from a legacy database export where keys were stored as 'user.profile.name' and 'user.profile.age'.
Problem
The application requires a nested JSON object to process the user data correctly.
How to use
Input the key-value pairs, set the Key Format to 'Dot Notation', and select 'Auto' for data type inference.
Input Format: Key=Value, Key Format: Dot Notation, Type Inference: AutoOutcome
The tool outputs a clean, nested JSON object: { "user": { "profile": { "name": "John", "age": 30 } } }.