You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the issue here is that 'items' is not being picked up by the index, is that it literally does not have a key of 'schema', but rather 'items'. Right now, this is expected behavior, based on the code, which is here: https://github.com/pb33f/libopenapi/blob/main/index/extract_refs.go#L43
The text was updated successfully, but these errors were encountered:
GetAllSchemas
does not return index references nested underitems
in an array.For instance, considering this component:
the paths associated with the index references returned by
GetAllSchemas
are :$.components.schemas.Array
$.components.schemas.Array.items.properties.name
While we would expect this one to also be included in the output :
$.components.schemas.Array.items
As a result it is not straightforward to perform type checking on the
type: skipped
node.Quote from dischord:
The text was updated successfully, but these errors were encountered: