I understand in postman we use test cases like status codes and response time to ensure API does not break but what is the necessity to validate the response body.
var schema
var jsonData = JSON.parse(responseBody);
tests["Verify that the Schema is Valid"] = tv4.validate(jsonData, schema);