JSON Response from API of Interest

{
  "status": "success",
  "data": {
    "user": {
      "id": 123,
      "username": "john_doe",
      "email": "john@example.com",
      "age": 30
    },
    "pets": [
      {
        "id": 1,
        "name": "Max",
        "species": "Dog",
        "age": 5
      },
      {
        "id": 2,
        "name": "Whiskers",
        "species": "Cat",
        "age": 3
      }
    ]
  }
}

Test Generation Form

Test JS (paste this into the Tests tab within Postman)

// function HelloWorld = function() {
//   console.log("Hello World!");
// }