oasdiff_breaking_changes
Detect breaking API changes between two OpenAPI specifications. Pass the base (old) and revision (new) specs as YAML or JSON; returns the breaking and warning-level changes. Use this when the question is whether an API change breaks existing clients. Use oasdiff_changelog instead to list every change including non-breaking and informational ones, oasdiff_diff for the raw added/removed/modified structure, or oasdiff_validate to check a single spec rather than compare two. Both specs must be valid, self-contained OpenAPI (external $ref URLs or files are not resolved).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base | Yes | the base (old) OpenAPI specification, as YAML or JSON | |
| revision | Yes | the revision (new) OpenAPI specification, as YAML or JSON |