Data Transformation Preview
{
"first_name": "John",
"last_name": "Smith",
"email": "john@EXAMPLE.com",
"created": "2024-01-15T10:30:00Z",
"status": "ACTIVE"
}
↓ Transform ↓
{
"fullName": "John Smith",
"email": "john@example.com",
"createdAt": "2024-01-15",
"status": "active",
"score": 87
}
↓ Validate ↓
{
"fullName": "John Smith",
"email": "john@example.com", ✓ valid
"createdAt": "2024-01-15", ✓ valid
"status": "active" ✓ valid
}