Transform Lab

See ODIN transforms in action. Select an example or write your own.

Transform Definition ODIN
JSON Input JSON
ODIN ODIN
{customer}
fullName = "Jane Smith"
email = "jane@acme.com"
phone = "5125551234"
city = "Austin"
state = "TX"
Output
{
  "customer": {
    "fullName": "Jane Smith",
    "email": "jane@acme.com",
    "phone": "5125551234",
    "city": "Austin",
    "state": "TX"
  }
}