Documentation
¶
Overview ¶
Package edit provides structural edits to an OpenAPI document — changes where touching one place obliges you to touch several others.
Index ¶
- Constants
- func RedirectSchema(doc *openapi.Document, oldName, newName, description string) error
- func RenameSchema(doc *openapi.Document, oldName, newName string) error
- func TrimExample(v jsontext.Value, maxItems int) (jsontext.Value, error)
- func TrimSchemaExamples(doc *openapi.Document, maxItems int) error
- type ErrInvalidSchemaName
- type ErrSchemaExists
- type ErrSchemaNotFound
Constants ¶
const DefaultMaxArrayExamples = 3
DefaultMaxArrayExamples is the array length TrimExample and TrimSchemaExamples use when the caller passes 0 for maxItems.
Variables ¶
This section is empty.
Functions ¶
func RedirectSchema ¶
RedirectSchema repoints every reference to oldName at newName and removes oldName from components.schemas. It does not read or change either schema's own definition — newName's shape is left exactly as it was, and oldName's is discarded along with oldName itself, not merged into newName's. Combining two schemas' definitions into one wider shape is a distinct, unrelated operation; see openapi-merge for that.
It differs from RenameSchema, which refuses to rename a schema onto a name that already exists (ErrSchemaExists): redirecting onto an existing schema is exactly the point here, typically because several near-duplicate schemas (e.g. ones an OpenAPI generator produced one per endpoint, that happen to describe the same thing) are being consolidated onto one of them.
If description is non-empty, it becomes the $ref-level description on every reference this repoints, replacing whatever description that reference already had. The usual reason to set it is that oldName's own definition — its bounds, its wording — is about to be discarded once oldName is gone; setting description is how that information survives on the references that used it, rather than being lost along with oldName.
It fails, changing nothing, if oldName or newName is not in components.schemas (ErrSchemaNotFound).
func RenameSchema ¶
RenameSchema renames a schema in components.schemas and rewrites every reference to it, wherever in the document that reference occurs.
The schema keeps its position among the components, so renaming produces a one-line change rather than reordering the section.
Renaming a schema to its current name does nothing and reports no error. Otherwise it fails, changing nothing, if:
- oldName is not in components.schemas (ErrSchemaNotFound);
- newName is already taken (ErrSchemaExists) — renaming onto an existing schema would silently discard one of two different definitions, and point every reference to whichever survived;
- newName could not be referenced (ErrInvalidSchemaName).
func TrimExample ¶
TrimExample returns v with every array it contains, at any depth, cut down to at most maxItems elements. Object key order and every kept value's own bytes are preserved exactly; only arrays are shortened. If maxItems is 0, DefaultMaxArrayExamples is used.
Elements are chosen to be representative rather than just the first few: an array keeps one element per distinct shape it observes first — an object's own set of keys, or a scalar's JSON type — in the order they appear, before repeating one to fill the rest of the budget. A field only some elements carry, or a value that is sometimes a number and sometimes a string, therefore survives trimming instead of being cut away by chance.
v must be well-formed JSON; TrimExample returns an error otherwise.
func TrimSchemaExamples ¶
TrimSchemaExamples applies TrimExample to every schema's own Example reachable from doc, in place. If maxItems is 0, DefaultMaxArrayExamples is used.
Types ¶
type ErrInvalidSchemaName ¶
type ErrInvalidSchemaName struct{ Name string }
ErrInvalidSchemaName is returned when the new name is not a valid key under components, and so could not be referenced.
func (*ErrInvalidSchemaName) Error ¶
func (e *ErrInvalidSchemaName) Error() string
type ErrSchemaExists ¶
type ErrSchemaExists struct{ Name string }
ErrSchemaExists is returned when the new name is already taken by another schema. Renaming onto it would silently merge two definitions into one.
func (*ErrSchemaExists) Error ¶
func (e *ErrSchemaExists) Error() string
type ErrSchemaNotFound ¶
type ErrSchemaNotFound struct{ Name string }
ErrSchemaNotFound is returned when the schema to rename is not in components.schemas.
func (*ErrSchemaNotFound) Error ¶
func (e *ErrSchemaNotFound) Error() string