formalize reference locations in the OpenAPI document schema #4262
karenetheridge
started this conversation in
Enhancements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my implementation I take note of the reference location of various entities while parsing an openapi document -- e.g. when following a
$ref
in the schema that points to#/$defs/parameter-or-reference
I make a note of the data location (in the openapi document being parsed) that this is a location of a parameter entity. This builds up a registry of location -> entity type maps, which I make use of at runtime when resolving a$ref
in the openapi document -- e.g. when validating an HTTP request against the openapi description, and I am processing a parameter object in the description, if I see a$ref
to something that I expect is a parameter object, when resolving this reference I check in the entity registry to confirm that the target of the reference is indeed a parameter (and if not, this constitutes a runtime error). [I also have plans to check all$ref
targets at parse time, at least for those pointing to the local document, as part of an extra linting step, but haven't implemented this yet.]This means I am dependent on the name of the references in the openapi schema. Everything is using the same naming convention of
#/$defs/foo-or-reference
and#/$defs/foo
in the schema definitions, but theoretically this could change at any time as there are no guarantees as to how the schema is constructed. Therefore it would be useful to formalize some of these locations and use$anchor
s in these definitions, and make use of the plain-name fragment form in the$ref
s, and document their use, so we are free to move things around in the schema while still preserving a name that can be relied upon by implementors.ref. https://open-api.slack.com/archives/C06A0RPNPGE/p1734458650755389
Beta Was this translation helpful? Give feedback.
All reactions