Remove key from JSON object dictionary

Options
Imagine I have a record I'm returning that looks like:
```
{
  id: 10,
  name: "My record",
  creation_date: 123452435
}
```

How do I remove `creation_date` from the object?

Comments