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
It's common to have json pointers including a / in a segment in OpenAPI, because OpenAPI uses both paths and content types as keys.
/ is escaped as ~1 in Json Pointer - so for instance in the json pointer /paths/~users/post/requestBody/application~1json/schema the unescaped segments are paths, /users, post, requestBody, application/json and schema.
It is not possible to construct a SchemaLocation from this valid json pointer.
It's common to have json pointers including a
/
in a segment in OpenAPI, because OpenAPI uses both paths and content types as keys./
is escaped as~1
in Json Pointer - so for instance in the json pointer/paths/~users/post/requestBody/application~1json/schema
the unescaped segments arepaths
,/users
,post
,requestBody
,application/json
andschema
.It is not possible to construct a SchemaLocation from this valid json pointer.
The following test fails:
Because the following test fails:
The text was updated successfully, but these errors were encountered: