delimit_diff
Compare two OpenAPI specs to identify added, modified, and removed endpoints, schemas, and parameters. Returns a clear list of all structural changes.
Instructions
Diff two OpenAPI specs and list all changes (pure diff, no policy).
When to use: when you only need the structural change set (added / removed / modified endpoints, schemas, parameters) without any policy verdict. When NOT to use: as a CI gate — for pass/fail use delimit_lint, for a shareable HTML report use delimit_diff_report.
Sibling contrast: delimit_lint adds policy + governance; this is the underlying change list. delimit_diff_report wraps both in a presentable report.
Side effects: read-only. Calls backends.gateway_core.run_diff.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| old_spec | Yes | Path to the baseline OpenAPI spec file. Required. | |
| new_spec | Yes | Path to the proposed OpenAPI spec file. Required. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||