Promptles
Data & Transformation

Transformation

beginner

Definition

Converting data from one format or structure into another. Transformations reshape data so it fits where it needs to go: renaming fields, changing date formats, flattening nested objects, or combining multiple sources into one.

In the wild

An API returns { first_name: 'Alice', last_name: 'Smith' } but your app expects { fullName: 'Alice Smith' }. A transformation function combines the two fields and renames the key to match your app's format.

More from Data & Transformation