Change an API spec without breaking it.
openapi-edit provides safe structural edits to an
OpenAPI 3.x specification — the kind of
change where touching one place obliges you to touch several others, and forgetting
one leaves a document that no longer resolves.
Status: early. The scope below is settled and operations arrive one at a
time, as each earns its place. RenameSchema and RedirectSchema are the first.
Introduction
Renaming a schema is the canonical example. The rename itself is a single map
operation, but every $ref that pointed at the old name is now dangling — and those
$refs can be anywhere: nested inside another schema's properties, inside an
allOf branch, in a response's content, in a parameter, in a callback. Getting this
right means walking the entire document. Getting it wrong means a spec that looks
fine and fails to resolve.
That traversal is worth writing once, carefully, and reusing.
This module serves two kinds of caller:
- Directly, when you are writing code against your own specification and want to
make a specific change safely, without reimplementing the bookkeeping.
- As a dependency, for tools like
openapi-compress and
openapi-flatten that run an
algorithm over a whole specification and need the same primitives underneath.
Usage
go get github.com/MarkRosemaker/openapi-edit
import (
"github.com/MarkRosemaker/openapi"
edit "github.com/MarkRosemaker/openapi-edit"
)
// Renames the schema and rewrites every reference to it.
if err := edit.RenameSchema(doc, "GetV1PetByPetIDOkJSONResponse", "Pet"); err != nil {
log.Fatal(err)
}
The schema keeps its position among the components, so a rename produces a
one-line change rather than reordering the section.
Renaming a schema to its current name does nothing and reports no error.
Otherwise the rename fails, changing nothing at all, in three cases:
| Error |
When |
ErrSchemaNotFound |
components.schemas has no schema under the old name |
ErrSchemaExists |
the new name is already taken by another schema |
ErrInvalidSchemaName |
the new name is not a valid key under components |
The second is the interesting one. Renaming onto an existing schema would
silently discard one of two different definitions and repoint every reference at
whichever survived — a change that looks successful and quietly alters the API.
The third matters more than validity alone suggests: a name containing / would
produce a reference that resolves somewhere else entirely, and one containing a
space would produce a reference that does not resolve at all. Component keys must
match ^[a-zA-Z0-9.\-_]+$.
Redirecting a schema onto another
RenameSchema refuses to rename a schema onto a name that already exists
(ErrSchemaExists). RedirectSchema is for when that's exactly the point —
several near-duplicate schemas, typically ones an OpenAPI generator produced
one per endpoint that happen to describe the same thing, are being
consolidated onto one of them:
// Repoints every reference to "GetPetOkResponse" at "Pet", then removes
// "GetPetOkResponse" from components.schemas.
if err := edit.RedirectSchema(doc, "GetPetOkResponse", "Pet", ""); err != nil {
log.Fatal(err)
}
What it actually does, precisely — this is a rewrite of references, not a
combination of content:
- It finds every
$ref in the document whose value is
"#/components/schemas/GetPetOkResponse" (via the same [walkSchemaRefs]
traversal RenameSchema uses) and rewrites each one to
"#/components/schemas/Pet".
- It deletes the
"GetPetOkResponse" entry from components.schemas.
- It does not look at, merge, or otherwise change the content of either
schema.
Pet's definition (its properties, its bounds, its wording) is
whatever it already was, byte for byte; GetPetOkResponse's definition is
simply gone, not folded into Pet's.
If GetPetOkResponse carried bounds or wording worth keeping, pass it as
description instead of an empty string: it becomes the $ref-level
description on every reference this repoints, replacing whatever
description that reference already had. That's the one piece of
GetPetOkResponse this function can carry forward — everything else about
its definition is discarded the moment step 2 above runs, so this is the
last chance to keep any of it on the sites that used it.
Redirecting a schema onto itself does nothing and reports no error.
Otherwise it fails, changing nothing at all, if either name is not in
components.schemas (ErrSchemaNotFound).
This is deliberately not the same operation as combining two schemas into
one wider shape (adding one's properties, enum values, etc. to the other) —
that's openapi-merge's job, and it works on two schema values directly
rather than on a document and its references. The two are meant to compose
at the call site rather than one wrapping the other: a caller deduplicating
a specification decides, using whatever means it likes (openapi-merge
included), which of two schemas should survive and what its content should
be, then calls RedirectSchema to point every reference at the survivor and
drop the one that lost. See Scope below.
Scope
Operations belong here when they satisfy two conditions: they mutate a
document, and doing them correctly requires knowledge of the document beyond the
node being changed.
In scope
- ✅ Renaming a component and rewriting every reference to it (
RenameSchema)
- ✅ Repointing every reference to a duplicate component onto the one that
survives, and removing the duplicate (
RedirectSchema)
- Moving a definition between inline and
components, keeping references intact
Out of scope
- Deciding whether two things should be merged — that is
openapi-compare
- Combining two independently inferred schemas into one wider schema that
covers what both described — that is
openapi-merge.
RedirectSchema above is a different, narrower operation: it never reads
or changes either schema's own definition, only the references that
pointed at the one being discarded.
- Whole-document policies such as flattening or deduplication — those are their own
modules, and they are expected to use this one
- Anything universal enough to belong on the types themselves — that goes into
openapi instead, so that users who
only want to parse and validate a spec aren't made to carry it
The openapi family
| Module |
Purpose |
| openapi |
Parse, validate, and write OpenAPI 3.x specifications |
| openapi-compare |
Compare specification objects — exact equality and shape equivalence |
| openapi-edit (this module) |
Safe structural edits, such as renaming a schema and rewriting every $ref to it |
| openapi-flatten |
Promote inline definitions into named components entries |
| openapi-compress |
Deduplicate and merge equivalent component schemas |
| openapi-merge |
Merge schemas that were inferred independently from different samples |
| openapi-enrich |
Infer specification content from observed HTTP traffic |
| openapi-codegen |
Generate Go types, clients, and servers from a specification |
Contributing
If you have any contributions to make, please submit a pull request or open an issue on the GitHub repository.
License
This project is licensed under the Apache 2.0 License.