response.json
{  "users": [    {      "name": "John Doe",      "email": "john.doe@example.com",      "age": 30,      "verified": true,      "cart": [        { "id": 1, "name": "Product 1", "price": 10 },        { "id": 2, "name": "Product 2", "price": 24 }      ]    },    {      "name": "Ada Byron",      "email": "ada@example.com",      "age": 36,      "verified": false,      "cart": []    }  ],  "meta": { "total": 2, "page": 1, "pages": 1 }}