RestfulTable model

Hi!

I’m trying to create a RestfulTable with a custom object that comes from the server and looks like this as a JSON (the resources field will have an array of these objects as response):

{
	  "id": "1",
	  "env": {
		"id": "10001",
		"name": "first_env"
	  }
     ...
}

and I want the tables rows to look like this:

| “id” | “env.id - env.name” | … |

Does anyone has an idea how this fields can be called in the ‘columns’ fields of the RestfulTable? Basically to access the fields of a composed object

I saw that there is a field called “model” in the docs ( REST-ful tables - AUI Documentation ) but I couldn’t find anything related to this. Somebody who used this ‘model’ field and not extend it?

Thanks!