Skip to content

Flatten Json Object

Description

Splits the rows of the column containing the JSON data into multiple columns.

Input

Data only

Output

Transformed data

Configuration Fields

Columns Allows input of multiple column names.

Sample Input

employee_idnameagecontact
E001John Doe32{“email”:“[email protected]”, “phone”:“+1-555-1234”, “}
E002Jane Smith28{“email”:“[email protected]”, “phone”:“+1-555-5678”}
E003Ali Khan40{“email”:“[email protected]”, “phone”:“+1-555-9876”}
E004Maria Gonzalez35{“email”:“[email protected]”, “phone”:“+1-555-2468”}
E005Rahul Sharma30{“email”:“[email protected]”, “phone”:“+1-555-7890”}

Sample Configuration

alt text

Sample Output

employee_idnameagecontact_infoContact_emailContact_phone
E001John Doe32{“email”:“[email protected]”, “phone”:“+1-555-1234”}[email protected]+1-555-1234
E002Jane Smith28{“email”:“[email protected]”, “phone”:“+1-555-5678”}[email protected]+1-555-5678
E003Ali Khan40{“email”:“[email protected]”, “phone”:“+1-555-9876”, }[email protected]+1-555-9876
E004Maria Gonzalez35{“email”:“[email protected]”, “phone”:“+1-555-2468”}[email protected]+1-555-2468
E005Rahul Sharma30{“email”:“[email protected]”, “phone”:“+1-555-7890”}[email protected]+1-555-7890