Dynamically create a list of webix.ui.view

My app is loading some data from the backend with webix.ajax() This call returns a JSON structure with a list of parent objects. Each parent object can contain a (sub)list of child objects.

I have a custom webix.ui.view that shows one parent object with all its children. It works if I statically create that view from static data.

But how can I dynamically create many webix.ui.views from dynamically loaded data. The data from the server decides how many Parent Objects there will be.

What would be a webix way of archiving this?

See this Snippet:
https://webix.com/snippet/52977142

I found the solution to my problem. This can be done with webix.ui.dataview:

https://webix.com/snippet/9f875e63