As an alternative to having to specify each item with Model and a single Data item, it would be easier to be able to pass multiple data items like this:
[
{
"model": "User",
"data": [
{
"id": "mmcfly",
"username": "mmcfly",
"full_name": "Marty McFly",
"email": "mmcfly@example.com",
"active": true
},
{
"id": "btannen",
"username": "btannen",
"full_name": "Biff Tannen",
"email": "biff.tannen@example.com",
"active": true
}
]
}
]
As an alternative to having to specify each item with Model and a single Data item, it would be easier to be able to pass multiple data items like this: