Can't Ember-data just see the JSON response it gets and understand by it which attributes are used by the server?
For example if the response for 'GET /api/user/1' is like:
{
id: 1,
first_name: 'Miki',
last_name: 'Coco',
age: 17
}
Its pretty obvious that the user model has just first_name, last_name and age.
Why would i need to configure it?