Ember table valuePath using more than just name property

Hi for ember table, valuePath is the columns, so I would use a string which is the key of my response from an api. But what if the value is an object within an object? i.e. {“name”, “age”, “details”: {“id”: 10, “cid”: 4}} and I need to use the value details[id]

this is just a guess but if the arg is called valuePath a path usually means one or more attributes/subattributes joined by dots. So in this case the path would look like value.details.id, or just details.id.