1. Catching a removed response field
Backend DeveloperBackground
A developer is refactoring a user profile endpoint and accidentally removes the email field from the response payload.
Problem
Need to ensure the updated OpenAPI spec doesn't break existing clients relying on the email field.
How to use
Paste the old OpenAPI YAML and the new YAML into the respective fields, select 'OpenAPI / Swagger', and enable Impact Analysis.
{
"schemaType": "openapi",
"includeImpactAnalysis": true
}Outcome
The tool flags a 'high' release risk and identifies that 'response 200.email' was removed, allowing the developer to fix the regression before merging.