Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenApi 3.1 "schema" property is not validated correctly #673

Closed
bweben opened this issue Mar 14, 2023 · 10 comments · Fixed by #956
Closed

OpenApi 3.1 "schema" property is not validated correctly #673

bweben opened this issue Mar 14, 2023 · 10 comments · Fixed by #956
Labels

Comments

@bweben
Copy link

bweben commented Mar 14, 2023

Hello

If I try to parse the https://editor-next.swagger.io OpenApi 3.1 Petstore example, I get the following errors:

There are unevaluated properties at following paths $.paths./pet.put.requestBody.content.application/json.schema.$ref
[...]

And If I debug it seems that there are no validators available beginning on path $.paths./pet.put.requestBody.content.application/json meaning the schema isn't evaluated which leads to the above error.

Is there already a Validator for the Schema per se?

Thanks for your work and your answer.

@stevehu
Copy link
Contributor

stevehu commented Mar 26, 2023

When using OpenAPI to validate the request and response, you need to extract the schema for the request or response based on the path. We are doing it with the light-rest-4j validator. Here is the class that can be a reference.

https://github.com/networknt/light-rest-4j/blob/master/openapi-validator/src/main/java/com/networknt/openapi/RequestValidator.java

@bweben
Copy link
Author

bweben commented Mar 27, 2023

Thanks for your comment.
We actually want to validate a spec.yml against the openapi schema instead of validating request / responses.

@stevehu
Copy link
Contributor

stevehu commented Mar 27, 2023

I understand now. I will create a test case and try it myself. Thanks.

@bweben
Copy link
Author

bweben commented Mar 27, 2023

Many thanks :)

@bweben
Copy link
Author

bweben commented Apr 17, 2023

Hi @stevehu
Just wanted to ask if you were able to confirm this issue? Otherwise I could try to come up with a test to showcase the issue.

@stevehu
Copy link
Contributor

stevehu commented Apr 17, 2023

It would be great if you could create a test case to demo the issue. Thanks.

@bweben
Copy link
Author

bweben commented Apr 17, 2023

bweben@6156abd this showcases the issue, I then get the following errors:

Log output
There are unevaluated properties at following paths $.paths./pet.put.requestBody.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./pet.put.requestBody.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref
There are unevaluated properties at following paths $.paths./pet.put.requestBody.content.application/json.schema.$ref, $.paths./pet.put.requestBody.content.application/json.schema, $.paths./pet.put.requestBody.content.application/json, $.paths./pet.put.requestBody.content.application/xml.schema.$ref, $.paths./pet.put.requestBody.content.application/xml.schema, $.paths./pet.put.requestBody.content.application/xml, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded
There are unevaluated properties at following paths $.paths./pet.put.responses.200.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./pet.put.responses.200.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./pet.put.responses.200.content.application/json.schema.$ref, $.paths./pet.put.responses.200.content.application/json.schema, $.paths./pet.put.responses.200.content.application/json, $.paths./pet.put.responses.200.content.application/xml.schema.$ref, $.paths./pet.put.responses.200.content.application/xml.schema, $.paths./pet.put.responses.200.content.application/xml
There are unevaluated properties at following paths $.paths./pet.put.responses.200.description, $.paths./pet.put.responses.200.content.application/json.schema.$ref, $.paths./pet.put.responses.200.content.application/json.schema, $.paths./pet.put.responses.200.content.application/json, $.paths./pet.put.responses.200.content.application/xml.schema.$ref, $.paths./pet.put.responses.200.content.application/xml.schema, $.paths./pet.put.responses.200.content.application/xml, $.paths./pet.put.responses.200.content
There are unevaluated properties at following paths $.paths./pet.put.requestBody.description, $.paths./pet.put.requestBody.content.application/json.schema.$ref, $.paths./pet.put.requestBody.content.application/json.schema, $.paths./pet.put.requestBody.content.application/json, $.paths./pet.put.requestBody.content.application/xml.schema.$ref, $.paths./pet.put.requestBody.content.application/xml.schema, $.paths./pet.put.requestBody.content.application/xml, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded, $.paths./pet.put.requestBody.content, $.paths./pet.put.requestBody.required, $.paths./pet.put.responses.200.description, $.paths./pet.put.responses.200.content.application/json.schema.$ref, $.paths./pet.put.responses.200.content.application/json.schema, $.paths./pet.put.responses.200.content.application/json, $.paths./pet.put.responses.200.content.application/xml.schema.$ref, $.paths./pet.put.responses.200.content.application/xml.schema, $.paths./pet.put.responses.200.content.application/xml, $.paths./pet.put.responses.200.content, $.paths./pet.put.responses.200, $.paths./pet.put.responses.400.description, $.paths./pet.put.responses.400, $.paths./pet.put.responses.404.description, $.paths./pet.put.responses.404, $.paths./pet.put.responses.405.description, $.paths./pet.put.responses.405
There are unevaluated properties at following paths $.paths./pet.post.requestBody.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./pet.post.requestBody.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref
There are unevaluated properties at following paths $.paths./pet.post.requestBody.content.application/json.schema.$ref, $.paths./pet.post.requestBody.content.application/json.schema, $.paths./pet.post.requestBody.content.application/json, $.paths./pet.post.requestBody.content.application/xml.schema.$ref, $.paths./pet.post.requestBody.content.application/xml.schema, $.paths./pet.post.requestBody.content.application/xml, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded
There are unevaluated properties at following paths $.paths./pet.post.responses.200.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./pet.post.responses.200.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./pet.post.responses.200.content.application/json.schema.$ref, $.paths./pet.post.responses.200.content.application/json.schema, $.paths./pet.post.responses.200.content.application/json, $.paths./pet.post.responses.200.content.application/xml.schema.$ref, $.paths./pet.post.responses.200.content.application/xml.schema, $.paths./pet.post.responses.200.content.application/xml
There are unevaluated properties at following paths $.paths./pet.post.responses.200.description, $.paths./pet.post.responses.200.content.application/json.schema.$ref, $.paths./pet.post.responses.200.content.application/json.schema, $.paths./pet.post.responses.200.content.application/json, $.paths./pet.post.responses.200.content.application/xml.schema.$ref, $.paths./pet.post.responses.200.content.application/xml.schema, $.paths./pet.post.responses.200.content.application/xml, $.paths./pet.post.responses.200.content
There are unevaluated properties at following paths $.paths./pet.post.requestBody.description, $.paths./pet.post.requestBody.content.application/json.schema.$ref, $.paths./pet.post.requestBody.content.application/json.schema, $.paths./pet.post.requestBody.content.application/json, $.paths./pet.post.requestBody.content.application/xml.schema.$ref, $.paths./pet.post.requestBody.content.application/xml.schema, $.paths./pet.post.requestBody.content.application/xml, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded, $.paths./pet.post.requestBody.content, $.paths./pet.post.requestBody.required, $.paths./pet.post.responses.200.description, $.paths./pet.post.responses.200.content.application/json.schema.$ref, $.paths./pet.post.responses.200.content.application/json.schema, $.paths./pet.post.responses.200.content.application/json, $.paths./pet.post.responses.200.content.application/xml.schema.$ref, $.paths./pet.post.responses.200.content.application/xml.schema, $.paths./pet.post.responses.200.content.application/xml, $.paths./pet.post.responses.200.content, $.paths./pet.post.responses.200, $.paths./pet.post.responses.405.description, $.paths./pet.post.responses.405
There are unevaluated properties at following paths $.paths./pet.put.tags, $.paths./pet.put.summary, $.paths./pet.put.description, $.paths./pet.put.operationId, $.paths./pet.put.requestBody.description, $.paths./pet.put.requestBody.content.application/json.schema.$ref, $.paths./pet.put.requestBody.content.application/json.schema, $.paths./pet.put.requestBody.content.application/json, $.paths./pet.put.requestBody.content.application/xml.schema.$ref, $.paths./pet.put.requestBody.content.application/xml.schema, $.paths./pet.put.requestBody.content.application/xml, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded, $.paths./pet.put.requestBody.content, $.paths./pet.put.requestBody.required, $.paths./pet.put.requestBody, $.paths./pet.put.responses.200.description, $.paths./pet.put.responses.200.content.application/json.schema.$ref, $.paths./pet.put.responses.200.content.application/json.schema, $.paths./pet.put.responses.200.content.application/json, $.paths./pet.put.responses.200.content.application/xml.schema.$ref, $.paths./pet.put.responses.200.content.application/xml.schema, $.paths./pet.put.responses.200.content.application/xml, $.paths./pet.put.responses.200.content, $.paths./pet.put.responses.200, $.paths./pet.put.responses.400.description, $.paths./pet.put.responses.400, $.paths./pet.put.responses.404.description, $.paths./pet.put.responses.404, $.paths./pet.put.responses.405.description, $.paths./pet.put.responses.405, $.paths./pet.put.responses, $.paths./pet.put.security, $.paths./pet.post.tags, $.paths./pet.post.summary, $.paths./pet.post.description, $.paths./pet.post.operationId, $.paths./pet.post.requestBody.description, $.paths./pet.post.requestBody.content.application/json.schema.$ref, $.paths./pet.post.requestBody.content.application/json.schema, $.paths./pet.post.requestBody.content.application/json, $.paths./pet.post.requestBody.content.application/xml.schema.$ref, $.paths./pet.post.requestBody.content.application/xml.schema, $.paths./pet.post.requestBody.content.application/xml, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded, $.paths./pet.post.requestBody.content, $.paths./pet.post.requestBody.required, $.paths./pet.post.requestBody, $.paths./pet.post.responses.200.description, $.paths./pet.post.responses.200.content.application/json.schema.$ref, $.paths./pet.post.responses.200.content.application/json.schema, $.paths./pet.post.responses.200.content.application/json, $.paths./pet.post.responses.200.content.application/xml.schema.$ref, $.paths./pet.post.responses.200.content.application/xml.schema, $.paths./pet.post.responses.200.content.application/xml, $.paths./pet.post.responses.200.content, $.paths./pet.post.responses.200, $.paths./pet.post.responses.405.description, $.paths./pet.post.responses.405, $.paths./pet.post.responses, $.paths./pet.post.security
There are unevaluated properties at following paths $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items
There are unevaluated properties at following paths $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items
There are unevaluated properties at following paths $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema, $.paths./pet/findByStatus.get.responses.200.content.application/json, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema, $.paths./pet/findByStatus.get.responses.200.content.application/xml
There are unevaluated properties at following paths $.paths./pet/findByStatus.get.responses.200.description, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema, $.paths./pet/findByStatus.get.responses.200.content.application/json, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema, $.paths./pet/findByStatus.get.responses.200.content.application/xml, $.paths./pet/findByStatus.get.responses.200.content
There are unevaluated properties at following paths $.paths./pet/findByStatus.get.responses.200.description, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema, $.paths./pet/findByStatus.get.responses.200.content.application/json, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema, $.paths./pet/findByStatus.get.responses.200.content.application/xml, $.paths./pet/findByStatus.get.responses.200.content, $.paths./pet/findByStatus.get.responses.200, $.paths./pet/findByStatus.get.responses.400.description, $.paths./pet/findByStatus.get.responses.400
There are unevaluated properties at following paths $.paths./pet/findByStatus.get.tags, $.paths./pet/findByStatus.get.summary, $.paths./pet/findByStatus.get.description, $.paths./pet/findByStatus.get.operationId, $.paths./pet/findByStatus.get.parameters, $.paths./pet/findByStatus.get.responses.200.description, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema, $.paths./pet/findByStatus.get.responses.200.content.application/json, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema, $.paths./pet/findByStatus.get.responses.200.content.application/xml, $.paths./pet/findByStatus.get.responses.200.content, $.paths./pet/findByStatus.get.responses.200, $.paths./pet/findByStatus.get.responses.400.description, $.paths./pet/findByStatus.get.responses.400, $.paths./pet/findByStatus.get.responses, $.paths./pet/findByStatus.get.security
There are unevaluated properties at following paths $.paths./pet/findByTags.get.responses.200.content.application/json.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items
There are unevaluated properties at following paths $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items
There are unevaluated properties at following paths $.paths./pet/findByTags.get.responses.200.content.application/json.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/json.schema, $.paths./pet/findByTags.get.responses.200.content.application/json, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema, $.paths./pet/findByTags.get.responses.200.content.application/xml
There are unevaluated properties at following paths $.paths./pet/findByTags.get.responses.200.description, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/json.schema, $.paths./pet/findByTags.get.responses.200.content.application/json, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema, $.paths./pet/findByTags.get.responses.200.content.application/xml, $.paths./pet/findByTags.get.responses.200.content
There are unevaluated properties at following paths $.paths./pet/findByTags.get.responses.200.description, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/json.schema, $.paths./pet/findByTags.get.responses.200.content.application/json, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema, $.paths./pet/findByTags.get.responses.200.content.application/xml, $.paths./pet/findByTags.get.responses.200.content, $.paths./pet/findByTags.get.responses.200, $.paths./pet/findByTags.get.responses.400.description, $.paths./pet/findByTags.get.responses.400
There are unevaluated properties at following paths $.paths./pet/findByTags.get.tags, $.paths./pet/findByTags.get.summary, $.paths./pet/findByTags.get.description, $.paths./pet/findByTags.get.operationId, $.paths./pet/findByTags.get.parameters, $.paths./pet/findByTags.get.responses.200.description, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/json.schema, $.paths./pet/findByTags.get.responses.200.content.application/json, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema, $.paths./pet/findByTags.get.responses.200.content.application/xml, $.paths./pet/findByTags.get.responses.200.content, $.paths./pet/findByTags.get.responses.200, $.paths./pet/findByTags.get.responses.400.description, $.paths./pet/findByTags.get.responses.400, $.paths./pet/findByTags.get.responses, $.paths./pet/findByTags.get.security
There are unevaluated properties at following paths $.paths./pet/{petId}.get.responses.200.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./pet/{petId}.get.responses.200.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./pet/{petId}.get.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/json.schema, $.paths./pet/{petId}.get.responses.200.content.application/json, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema, $.paths./pet/{petId}.get.responses.200.content.application/xml
There are unevaluated properties at following paths $.paths./pet/{petId}.get.responses.200.description, $.paths./pet/{petId}.get.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/json.schema, $.paths./pet/{petId}.get.responses.200.content.application/json, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema, $.paths./pet/{petId}.get.responses.200.content.application/xml, $.paths./pet/{petId}.get.responses.200.content
There are unevaluated properties at following paths $.paths./pet/{petId}.get.responses.200.description, $.paths./pet/{petId}.get.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/json.schema, $.paths./pet/{petId}.get.responses.200.content.application/json, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema, $.paths./pet/{petId}.get.responses.200.content.application/xml, $.paths./pet/{petId}.get.responses.200.content, $.paths./pet/{petId}.get.responses.200, $.paths./pet/{petId}.get.responses.400.description, $.paths./pet/{petId}.get.responses.400, $.paths./pet/{petId}.get.responses.404.description, $.paths./pet/{petId}.get.responses.404
There are unevaluated properties at following paths $.paths./pet/{petId}.get.tags, $.paths./pet/{petId}.get.summary, $.paths./pet/{petId}.get.description, $.paths./pet/{petId}.get.operationId, $.paths./pet/{petId}.get.parameters, $.paths./pet/{petId}.get.responses.200.description, $.paths./pet/{petId}.get.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/json.schema, $.paths./pet/{petId}.get.responses.200.content.application/json, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema, $.paths./pet/{petId}.get.responses.200.content.application/xml, $.paths./pet/{petId}.get.responses.200.content, $.paths./pet/{petId}.get.responses.200, $.paths./pet/{petId}.get.responses.400.description, $.paths./pet/{petId}.get.responses.400, $.paths./pet/{petId}.get.responses.404.description, $.paths./pet/{petId}.get.responses.404, $.paths./pet/{petId}.get.responses, $.paths./pet/{petId}.get.security
There are unevaluated properties at following paths $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.type, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.format
There are unevaluated properties at following paths $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.type, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.format, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream
There are unevaluated properties at following paths $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json
There are unevaluated properties at following paths $.paths./pet/{petId}/uploadImage.post.responses.200.description, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json, $.paths./pet/{petId}/uploadImage.post.responses.200.content
There are unevaluated properties at following paths $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.type, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.format, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream, $.paths./pet/{petId}/uploadImage.post.requestBody.content, $.paths./pet/{petId}/uploadImage.post.responses.200.description, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json, $.paths./pet/{petId}/uploadImage.post.responses.200.content, $.paths./pet/{petId}/uploadImage.post.responses.200
There are unevaluated properties at following paths $.paths./pet/{petId}/uploadImage.post.tags, $.paths./pet/{petId}/uploadImage.post.summary, $.paths./pet/{petId}/uploadImage.post.description, $.paths./pet/{petId}/uploadImage.post.operationId, $.paths./pet/{petId}/uploadImage.post.parameters, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.type, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.format, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream, $.paths./pet/{petId}/uploadImage.post.requestBody.content, $.paths./pet/{petId}/uploadImage.post.requestBody, $.paths./pet/{petId}/uploadImage.post.responses.200.description, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json, $.paths./pet/{petId}/uploadImage.post.responses.200.content, $.paths./pet/{petId}/uploadImage.post.responses.200, $.paths./pet/{petId}/uploadImage.post.responses, $.paths./pet/{petId}/uploadImage.post.security
There are unevaluated properties at following paths $.paths./store/inventory.get.responses.200.content.application/json.schema.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.format, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties
There are unevaluated properties at following paths $.paths./store/inventory.get.responses.200.content.application/json.schema.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.format, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties, $.paths./store/inventory.get.responses.200.content.application/json.schema, $.paths./store/inventory.get.responses.200.content.application/json
There are unevaluated properties at following paths $.paths./store/inventory.get.responses.200.description, $.paths./store/inventory.get.responses.200.content.application/json.schema.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.format, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties, $.paths./store/inventory.get.responses.200.content.application/json.schema, $.paths./store/inventory.get.responses.200.content.application/json, $.paths./store/inventory.get.responses.200.content
There are unevaluated properties at following paths $.paths./store/inventory.get.responses.200.description, $.paths./store/inventory.get.responses.200.content.application/json.schema.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.format, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties, $.paths./store/inventory.get.responses.200.content.application/json.schema, $.paths./store/inventory.get.responses.200.content.application/json, $.paths./store/inventory.get.responses.200.content, $.paths./store/inventory.get.responses.200
There are unevaluated properties at following paths $.paths./store/inventory.get.tags, $.paths./store/inventory.get.summary, $.paths./store/inventory.get.description, $.paths./store/inventory.get.operationId, $.paths./store/inventory.get.responses.200.description, $.paths./store/inventory.get.responses.200.content.application/json.schema.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.format, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties, $.paths./store/inventory.get.responses.200.content.application/json.schema, $.paths./store/inventory.get.responses.200.content.application/json, $.paths./store/inventory.get.responses.200.content, $.paths./store/inventory.get.responses.200, $.paths./store/inventory.get.responses, $.paths./store/inventory.get.security
There are unevaluated properties at following paths $.paths./store/order.post.requestBody.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./store/order.post.requestBody.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref
There are unevaluated properties at following paths $.paths./store/order.post.requestBody.content.application/json.schema.$ref, $.paths./store/order.post.requestBody.content.application/json.schema, $.paths./store/order.post.requestBody.content.application/json, $.paths./store/order.post.requestBody.content.application/xml.schema.$ref, $.paths./store/order.post.requestBody.content.application/xml.schema, $.paths./store/order.post.requestBody.content.application/xml, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded
There are unevaluated properties at following paths $.paths./store/order.post.responses.200.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./store/order.post.responses.200.content.application/json.schema.$ref, $.paths./store/order.post.responses.200.content.application/json.schema, $.paths./store/order.post.responses.200.content.application/json
There are unevaluated properties at following paths $.paths./store/order.post.responses.200.description, $.paths./store/order.post.responses.200.content.application/json.schema.$ref, $.paths./store/order.post.responses.200.content.application/json.schema, $.paths./store/order.post.responses.200.content.application/json, $.paths./store/order.post.responses.200.content
There are unevaluated properties at following paths $.paths./store/order.post.requestBody.content.application/json.schema.$ref, $.paths./store/order.post.requestBody.content.application/json.schema, $.paths./store/order.post.requestBody.content.application/json, $.paths./store/order.post.requestBody.content.application/xml.schema.$ref, $.paths./store/order.post.requestBody.content.application/xml.schema, $.paths./store/order.post.requestBody.content.application/xml, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded, $.paths./store/order.post.requestBody.content, $.paths./store/order.post.responses.200.description, $.paths./store/order.post.responses.200.content.application/json.schema.$ref, $.paths./store/order.post.responses.200.content.application/json.schema, $.paths./store/order.post.responses.200.content.application/json, $.paths./store/order.post.responses.200.content, $.paths./store/order.post.responses.200, $.paths./store/order.post.responses.405.description, $.paths./store/order.post.responses.405
There are unevaluated properties at following paths $.paths./store/order.post.tags, $.paths./store/order.post.summary, $.paths./store/order.post.description, $.paths./store/order.post.operationId, $.paths./store/order.post.requestBody.content.application/json.schema.$ref, $.paths./store/order.post.requestBody.content.application/json.schema, $.paths./store/order.post.requestBody.content.application/json, $.paths./store/order.post.requestBody.content.application/xml.schema.$ref, $.paths./store/order.post.requestBody.content.application/xml.schema, $.paths./store/order.post.requestBody.content.application/xml, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded, $.paths./store/order.post.requestBody.content, $.paths./store/order.post.requestBody, $.paths./store/order.post.responses.200.description, $.paths./store/order.post.responses.200.content.application/json.schema.$ref, $.paths./store/order.post.responses.200.content.application/json.schema, $.paths./store/order.post.responses.200.content.application/json, $.paths./store/order.post.responses.200.content, $.paths./store/order.post.responses.200, $.paths./store/order.post.responses.405.description, $.paths./store/order.post.responses.405, $.paths./store/order.post.responses
There are unevaluated properties at following paths $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/json, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/xml
There are unevaluated properties at following paths $.paths./store/order/{orderId}.get.responses.200.description, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/json, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/xml, $.paths./store/order/{orderId}.get.responses.200.content
There are unevaluated properties at following paths $.paths./store/order/{orderId}.get.responses.200.description, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/json, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/xml, $.paths./store/order/{orderId}.get.responses.200.content, $.paths./store/order/{orderId}.get.responses.200, $.paths./store/order/{orderId}.get.responses.400.description, $.paths./store/order/{orderId}.get.responses.400, $.paths./store/order/{orderId}.get.responses.404.description, $.paths./store/order/{orderId}.get.responses.404
There are unevaluated properties at following paths $.paths./store/order/{orderId}.get.tags, $.paths./store/order/{orderId}.get.summary, $.paths./store/order/{orderId}.get.description, $.paths./store/order/{orderId}.get.operationId, $.paths./store/order/{orderId}.get.parameters, $.paths./store/order/{orderId}.get.responses.200.description, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/json, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/xml, $.paths./store/order/{orderId}.get.responses.200.content, $.paths./store/order/{orderId}.get.responses.200, $.paths./store/order/{orderId}.get.responses.400.description, $.paths./store/order/{orderId}.get.responses.400, $.paths./store/order/{orderId}.get.responses.404.description, $.paths./store/order/{orderId}.get.responses.404, $.paths./store/order/{orderId}.get.responses
There are unevaluated properties at following paths $.paths./user.post.requestBody.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./user.post.requestBody.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref
There are unevaluated properties at following paths $.paths./user.post.requestBody.content.application/json.schema.$ref, $.paths./user.post.requestBody.content.application/json.schema, $.paths./user.post.requestBody.content.application/json, $.paths./user.post.requestBody.content.application/xml.schema.$ref, $.paths./user.post.requestBody.content.application/xml.schema, $.paths./user.post.requestBody.content.application/xml, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded
There are unevaluated properties at following paths $.paths./user.post.responses.default.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./user.post.responses.default.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./user.post.responses.default.content.application/json.schema.$ref, $.paths./user.post.responses.default.content.application/json.schema, $.paths./user.post.responses.default.content.application/json, $.paths./user.post.responses.default.content.application/xml.schema.$ref, $.paths./user.post.responses.default.content.application/xml.schema, $.paths./user.post.responses.default.content.application/xml
There are unevaluated properties at following paths $.paths./user.post.responses.default.description, $.paths./user.post.responses.default.content.application/json.schema.$ref, $.paths./user.post.responses.default.content.application/json.schema, $.paths./user.post.responses.default.content.application/json, $.paths./user.post.responses.default.content.application/xml.schema.$ref, $.paths./user.post.responses.default.content.application/xml.schema, $.paths./user.post.responses.default.content.application/xml, $.paths./user.post.responses.default.content
There are unevaluated properties at following paths $.paths./user.post.requestBody.description, $.paths./user.post.requestBody.content.application/json.schema.$ref, $.paths./user.post.requestBody.content.application/json.schema, $.paths./user.post.requestBody.content.application/json, $.paths./user.post.requestBody.content.application/xml.schema.$ref, $.paths./user.post.requestBody.content.application/xml.schema, $.paths./user.post.requestBody.content.application/xml, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded, $.paths./user.post.requestBody.content, $.paths./user.post.responses.default.description, $.paths./user.post.responses.default.content.application/json.schema.$ref, $.paths./user.post.responses.default.content.application/json.schema, $.paths./user.post.responses.default.content.application/json, $.paths./user.post.responses.default.content.application/xml.schema.$ref, $.paths./user.post.responses.default.content.application/xml.schema, $.paths./user.post.responses.default.content.application/xml, $.paths./user.post.responses.default.content, $.paths./user.post.responses.default
There are unevaluated properties at following paths $.paths./user.post.tags, $.paths./user.post.summary, $.paths./user.post.description, $.paths./user.post.operationId, $.paths./user.post.requestBody.description, $.paths./user.post.requestBody.content.application/json.schema.$ref, $.paths./user.post.requestBody.content.application/json.schema, $.paths./user.post.requestBody.content.application/json, $.paths./user.post.requestBody.content.application/xml.schema.$ref, $.paths./user.post.requestBody.content.application/xml.schema, $.paths./user.post.requestBody.content.application/xml, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded, $.paths./user.post.requestBody.content, $.paths./user.post.requestBody, $.paths./user.post.responses.default.description, $.paths./user.post.responses.default.content.application/json.schema.$ref, $.paths./user.post.responses.default.content.application/json.schema, $.paths./user.post.responses.default.content.application/json, $.paths./user.post.responses.default.content.application/xml.schema.$ref, $.paths./user.post.responses.default.content.application/xml.schema, $.paths./user.post.responses.default.content.application/xml, $.paths./user.post.responses.default.content, $.paths./user.post.responses.default, $.paths./user.post.responses
There are unevaluated properties at following paths $.paths./user/createWithList.post.requestBody.content.application/json.schema.type, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items.$ref, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items
There are unevaluated properties at following paths $.paths./user/createWithList.post.requestBody.content.application/json.schema.type, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items.$ref, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items, $.paths./user/createWithList.post.requestBody.content.application/json.schema, $.paths./user/createWithList.post.requestBody.content.application/json
There are unevaluated properties at following paths $.paths./user/createWithList.post.responses.200.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./user/createWithList.post.responses.200.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./user/createWithList.post.responses.200.content.application/json.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/json.schema, $.paths./user/createWithList.post.responses.200.content.application/json, $.paths./user/createWithList.post.responses.200.content.application/xml.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/xml.schema, $.paths./user/createWithList.post.responses.200.content.application/xml
There are unevaluated properties at following paths $.paths./user/createWithList.post.responses.200.description, $.paths./user/createWithList.post.responses.200.content.application/json.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/json.schema, $.paths./user/createWithList.post.responses.200.content.application/json, $.paths./user/createWithList.post.responses.200.content.application/xml.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/xml.schema, $.paths./user/createWithList.post.responses.200.content.application/xml, $.paths./user/createWithList.post.responses.200.content
There are unevaluated properties at following paths $.paths./user/createWithList.post.requestBody.content.application/json.schema.type, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items.$ref, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items, $.paths./user/createWithList.post.requestBody.content.application/json.schema, $.paths./user/createWithList.post.requestBody.content.application/json, $.paths./user/createWithList.post.requestBody.content, $.paths./user/createWithList.post.responses.200.description, $.paths./user/createWithList.post.responses.200.content.application/json.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/json.schema, $.paths./user/createWithList.post.responses.200.content.application/json, $.paths./user/createWithList.post.responses.200.content.application/xml.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/xml.schema, $.paths./user/createWithList.post.responses.200.content.application/xml, $.paths./user/createWithList.post.responses.200.content, $.paths./user/createWithList.post.responses.200, $.paths./user/createWithList.post.responses.default.description, $.paths./user/createWithList.post.responses.default
There are unevaluated properties at following paths $.paths./user/createWithList.post.tags, $.paths./user/createWithList.post.summary, $.paths./user/createWithList.post.description, $.paths./user/createWithList.post.operationId, $.paths./user/createWithList.post.requestBody.content.application/json.schema.type, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items.$ref, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items, $.paths./user/createWithList.post.requestBody.content.application/json.schema, $.paths./user/createWithList.post.requestBody.content.application/json, $.paths./user/createWithList.post.requestBody.content, $.paths./user/createWithList.post.requestBody, $.paths./user/createWithList.post.responses.200.description, $.paths./user/createWithList.post.responses.200.content.application/json.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/json.schema, $.paths./user/createWithList.post.responses.200.content.application/json, $.paths./user/createWithList.post.responses.200.content.application/xml.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/xml.schema, $.paths./user/createWithList.post.responses.200.content.application/xml, $.paths./user/createWithList.post.responses.200.content, $.paths./user/createWithList.post.responses.200, $.paths./user/createWithList.post.responses.default.description, $.paths./user/createWithList.post.responses.default, $.paths./user/createWithList.post.responses
There are unevaluated properties at following paths $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.type, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.format
There are unevaluated properties at following paths $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.type, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.format
There are unevaluated properties at following paths $.paths./user/login.get.responses.200.content.application/xml.schema.type
There are unevaluated properties at following paths $.paths./user/login.get.responses.200.content.application/json.schema.type
There are unevaluated properties at following paths $.paths./user/login.get.responses.200.headers.X-Rate-Limit.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.type, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.format, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema, $.paths./user/login.get.responses.200.headers.X-Expires-After.description, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.type, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.format, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema, $.paths./user/login.get.responses.200.content.application/xml.schema.type, $.paths./user/login.get.responses.200.content.application/xml.schema, $.paths./user/login.get.responses.200.content.application/xml, $.paths./user/login.get.responses.200.content.application/json.schema.type, $.paths./user/login.get.responses.200.content.application/json.schema, $.paths./user/login.get.responses.200.content.application/json
There are unevaluated properties at following paths $.paths./user/login.get.responses.200.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.type, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.format, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema, $.paths./user/login.get.responses.200.headers.X-Rate-Limit, $.paths./user/login.get.responses.200.headers.X-Expires-After.description, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.type, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.format, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema, $.paths./user/login.get.responses.200.headers.X-Expires-After, $.paths./user/login.get.responses.200.headers, $.paths./user/login.get.responses.200.content.application/xml.schema.type, $.paths./user/login.get.responses.200.content.application/xml.schema, $.paths./user/login.get.responses.200.content.application/xml, $.paths./user/login.get.responses.200.content.application/json.schema.type, $.paths./user/login.get.responses.200.content.application/json.schema, $.paths./user/login.get.responses.200.content.application/json, $.paths./user/login.get.responses.200.content
There are unevaluated properties at following paths $.paths./user/login.get.responses.200.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.type, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.format, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema, $.paths./user/login.get.responses.200.headers.X-Rate-Limit, $.paths./user/login.get.responses.200.headers.X-Expires-After.description, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.type, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.format, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema, $.paths./user/login.get.responses.200.headers.X-Expires-After, $.paths./user/login.get.responses.200.headers, $.paths./user/login.get.responses.200.content.application/xml.schema.type, $.paths./user/login.get.responses.200.content.application/xml.schema, $.paths./user/login.get.responses.200.content.application/xml, $.paths./user/login.get.responses.200.content.application/json.schema.type, $.paths./user/login.get.responses.200.content.application/json.schema, $.paths./user/login.get.responses.200.content.application/json, $.paths./user/login.get.responses.200.content, $.paths./user/login.get.responses.200, $.paths./user/login.get.responses.400.description, $.paths./user/login.get.responses.400
There are unevaluated properties at following paths $.paths./user/login.get.tags, $.paths./user/login.get.summary, $.paths./user/login.get.description, $.paths./user/login.get.operationId, $.paths./user/login.get.parameters, $.paths./user/login.get.responses.200.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.type, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.format, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema, $.paths./user/login.get.responses.200.headers.X-Rate-Limit, $.paths./user/login.get.responses.200.headers.X-Expires-After.description, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.type, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.format, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema, $.paths./user/login.get.responses.200.headers.X-Expires-After, $.paths./user/login.get.responses.200.headers, $.paths./user/login.get.responses.200.content.application/xml.schema.type, $.paths./user/login.get.responses.200.content.application/xml.schema, $.paths./user/login.get.responses.200.content.application/xml, $.paths./user/login.get.responses.200.content.application/json.schema.type, $.paths./user/login.get.responses.200.content.application/json.schema, $.paths./user/login.get.responses.200.content.application/json, $.paths./user/login.get.responses.200.content, $.paths./user/login.get.responses.200, $.paths./user/login.get.responses.400.description, $.paths./user/login.get.responses.400, $.paths./user/login.get.responses
There are unevaluated properties at following paths $.paths./user/{username}.get.responses.200.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./user/{username}.get.responses.200.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./user/{username}.get.responses.200.content.application/json.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/json.schema, $.paths./user/{username}.get.responses.200.content.application/json, $.paths./user/{username}.get.responses.200.content.application/xml.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/xml.schema, $.paths./user/{username}.get.responses.200.content.application/xml
There are unevaluated properties at following paths $.paths./user/{username}.get.responses.200.description, $.paths./user/{username}.get.responses.200.content.application/json.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/json.schema, $.paths./user/{username}.get.responses.200.content.application/json, $.paths./user/{username}.get.responses.200.content.application/xml.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/xml.schema, $.paths./user/{username}.get.responses.200.content.application/xml, $.paths./user/{username}.get.responses.200.content
There are unevaluated properties at following paths $.paths./user/{username}.get.responses.200.description, $.paths./user/{username}.get.responses.200.content.application/json.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/json.schema, $.paths./user/{username}.get.responses.200.content.application/json, $.paths./user/{username}.get.responses.200.content.application/xml.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/xml.schema, $.paths./user/{username}.get.responses.200.content.application/xml, $.paths./user/{username}.get.responses.200.content, $.paths./user/{username}.get.responses.200, $.paths./user/{username}.get.responses.400.description, $.paths./user/{username}.get.responses.400, $.paths./user/{username}.get.responses.404.description, $.paths./user/{username}.get.responses.404
There are unevaluated properties at following paths $.paths./user/{username}.put.requestBody.content.application/json.schema.$ref
There are unevaluated properties at following paths $.paths./user/{username}.put.requestBody.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref
There are unevaluated properties at following paths $.paths./user/{username}.put.requestBody.content.application/json.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/json.schema, $.paths./user/{username}.put.requestBody.content.application/json, $.paths./user/{username}.put.requestBody.content.application/xml.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/xml.schema, $.paths./user/{username}.put.requestBody.content.application/xml, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded
There are unevaluated properties at following paths $.paths./user/{username}.put.requestBody.description, $.paths./user/{username}.put.requestBody.content.application/json.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/json.schema, $.paths./user/{username}.put.requestBody.content.application/json, $.paths./user/{username}.put.requestBody.content.application/xml.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/xml.schema, $.paths./user/{username}.put.requestBody.content.application/xml, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded, $.paths./user/{username}.put.requestBody.content
There are unevaluated properties at following paths $.paths./user/{username}.get.tags, $.paths./user/{username}.get.summary, $.paths./user/{username}.get.description, $.paths./user/{username}.get.operationId, $.paths./user/{username}.get.parameters, $.paths./user/{username}.get.responses.200.description, $.paths./user/{username}.get.responses.200.content.application/json.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/json.schema, $.paths./user/{username}.get.responses.200.content.application/json, $.paths./user/{username}.get.responses.200.content.application/xml.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/xml.schema, $.paths./user/{username}.get.responses.200.content.application/xml, $.paths./user/{username}.get.responses.200.content, $.paths./user/{username}.get.responses.200, $.paths./user/{username}.get.responses.400.description, $.paths./user/{username}.get.responses.400, $.paths./user/{username}.get.responses.404.description, $.paths./user/{username}.get.responses.404, $.paths./user/{username}.get.responses, $.paths./user/{username}.put.tags, $.paths./user/{username}.put.summary, $.paths./user/{username}.put.description, $.paths./user/{username}.put.operationId, $.paths./user/{username}.put.parameters, $.paths./user/{username}.put.requestBody.description, $.paths./user/{username}.put.requestBody.content.application/json.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/json.schema, $.paths./user/{username}.put.requestBody.content.application/json, $.paths./user/{username}.put.requestBody.content.application/xml.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/xml.schema, $.paths./user/{username}.put.requestBody.content.application/xml, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded, $.paths./user/{username}.put.requestBody.content, $.paths./user/{username}.put.requestBody, $.paths./user/{username}.put.responses.default.description, $.paths./user/{username}.put.responses.default, $.paths./user/{username}.put.responses
There are unevaluated properties at following paths $.paths./pet.put.tags, $.paths./pet.put.summary, $.paths./pet.put.description, $.paths./pet.put.operationId, $.paths./pet.put.requestBody.description, $.paths./pet.put.requestBody.content.application/json.schema.$ref, $.paths./pet.put.requestBody.content.application/json.schema, $.paths./pet.put.requestBody.content.application/json, $.paths./pet.put.requestBody.content.application/xml.schema.$ref, $.paths./pet.put.requestBody.content.application/xml.schema, $.paths./pet.put.requestBody.content.application/xml, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded, $.paths./pet.put.requestBody.content, $.paths./pet.put.requestBody.required, $.paths./pet.put.requestBody, $.paths./pet.put.responses.200.description, $.paths./pet.put.responses.200.content.application/json.schema.$ref, $.paths./pet.put.responses.200.content.application/json.schema, $.paths./pet.put.responses.200.content.application/json, $.paths./pet.put.responses.200.content.application/xml.schema.$ref, $.paths./pet.put.responses.200.content.application/xml.schema, $.paths./pet.put.responses.200.content.application/xml, $.paths./pet.put.responses.200.content, $.paths./pet.put.responses.200, $.paths./pet.put.responses.400.description, $.paths./pet.put.responses.400, $.paths./pet.put.responses.404.description, $.paths./pet.put.responses.404, $.paths./pet.put.responses.405.description, $.paths./pet.put.responses.405, $.paths./pet.put.responses, $.paths./pet.put.security, $.paths./pet.put, $.paths./pet.post.tags, $.paths./pet.post.summary, $.paths./pet.post.description, $.paths./pet.post.operationId, $.paths./pet.post.requestBody.description, $.paths./pet.post.requestBody.content.application/json.schema.$ref, $.paths./pet.post.requestBody.content.application/json.schema, $.paths./pet.post.requestBody.content.application/json, $.paths./pet.post.requestBody.content.application/xml.schema.$ref, $.paths./pet.post.requestBody.content.application/xml.schema, $.paths./pet.post.requestBody.content.application/xml, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded, $.paths./pet.post.requestBody.content, $.paths./pet.post.requestBody.required, $.paths./pet.post.requestBody, $.paths./pet.post.responses.200.description, $.paths./pet.post.responses.200.content.application/json.schema.$ref, $.paths./pet.post.responses.200.content.application/json.schema, $.paths./pet.post.responses.200.content.application/json, $.paths./pet.post.responses.200.content.application/xml.schema.$ref, $.paths./pet.post.responses.200.content.application/xml.schema, $.paths./pet.post.responses.200.content.application/xml, $.paths./pet.post.responses.200.content, $.paths./pet.post.responses.200, $.paths./pet.post.responses.405.description, $.paths./pet.post.responses.405, $.paths./pet.post.responses, $.paths./pet.post.security, $.paths./pet.post, $.paths./pet/findByStatus.get.tags, $.paths./pet/findByStatus.get.summary, $.paths./pet/findByStatus.get.description, $.paths./pet/findByStatus.get.operationId, $.paths./pet/findByStatus.get.parameters, $.paths./pet/findByStatus.get.responses.200.description, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema, $.paths./pet/findByStatus.get.responses.200.content.application/json, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema, $.paths./pet/findByStatus.get.responses.200.content.application/xml, $.paths./pet/findByStatus.get.responses.200.content, $.paths./pet/findByStatus.get.responses.200, $.paths./pet/findByStatus.get.responses.400.description, $.paths./pet/findByStatus.get.responses.400, $.paths./pet/findByStatus.get.responses, $.paths./pet/findByStatus.get.security, $.paths./pet/findByStatus.get, $.paths./pet/findByTags.get.tags, $.paths./pet/findByTags.get.summary, $.paths./pet/findByTags.get.description, $.paths./pet/findByTags.get.operationId, $.paths./pet/findByTags.get.parameters, $.paths./pet/findByTags.get.responses.200.description, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/json.schema, $.paths./pet/findByTags.get.responses.200.content.application/json, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema, $.paths./pet/findByTags.get.responses.200.content.application/xml, $.paths./pet/findByTags.get.responses.200.content, $.paths./pet/findByTags.get.responses.200, $.paths./pet/findByTags.get.responses.400.description, $.paths./pet/findByTags.get.responses.400, $.paths./pet/findByTags.get.responses, $.paths./pet/findByTags.get.security, $.paths./pet/findByTags.get, $.paths./pet/{petId}.get.tags, $.paths./pet/{petId}.get.summary, $.paths./pet/{petId}.get.description, $.paths./pet/{petId}.get.operationId, $.paths./pet/{petId}.get.parameters, $.paths./pet/{petId}.get.responses.200.description, $.paths./pet/{petId}.get.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/json.schema, $.paths./pet/{petId}.get.responses.200.content.application/json, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema, $.paths./pet/{petId}.get.responses.200.content.application/xml, $.paths./pet/{petId}.get.responses.200.content, $.paths./pet/{petId}.get.responses.200, $.paths./pet/{petId}.get.responses.400.description, $.paths./pet/{petId}.get.responses.400, $.paths./pet/{petId}.get.responses.404.description, $.paths./pet/{petId}.get.responses.404, $.paths./pet/{petId}.get.responses, $.paths./pet/{petId}.get.security, $.paths./pet/{petId}.get, $.paths./pet/{petId}.post.tags, $.paths./pet/{petId}.post.summary, $.paths./pet/{petId}.post.description, $.paths./pet/{petId}.post.operationId, $.paths./pet/{petId}.post.parameters, $.paths./pet/{petId}.post.responses.405.description, $.paths./pet/{petId}.post.responses.405, $.paths./pet/{petId}.post.responses, $.paths./pet/{petId}.post.security, $.paths./pet/{petId}.post, $.paths./pet/{petId}.delete.tags, $.paths./pet/{petId}.delete.summary, $.paths./pet/{petId}.delete.description, $.paths./pet/{petId}.delete.operationId, $.paths./pet/{petId}.delete.parameters, $.paths./pet/{petId}.delete.responses.400.description, $.paths./pet/{petId}.delete.responses.400, $.paths./pet/{petId}.delete.responses, $.paths./pet/{petId}.delete.security, $.paths./pet/{petId}.delete, $.paths./pet/{petId}/uploadImage.post.tags, $.paths./pet/{petId}/uploadImage.post.summary, $.paths./pet/{petId}/uploadImage.post.description, $.paths./pet/{petId}/uploadImage.post.operationId, $.paths./pet/{petId}/uploadImage.post.parameters, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.type, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.format, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream, $.paths./pet/{petId}/uploadImage.post.requestBody.content, $.paths./pet/{petId}/uploadImage.post.requestBody, $.paths./pet/{petId}/uploadImage.post.responses.200.description, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json, $.paths./pet/{petId}/uploadImage.post.responses.200.content, $.paths./pet/{petId}/uploadImage.post.responses.200, $.paths./pet/{petId}/uploadImage.post.responses, $.paths./pet/{petId}/uploadImage.post.security, $.paths./pet/{petId}/uploadImage.post, $.paths./store/inventory.get.tags, $.paths./store/inventory.get.summary, $.paths./store/inventory.get.description, $.paths./store/inventory.get.operationId, $.paths./store/inventory.get.responses.200.description, $.paths./store/inventory.get.responses.200.content.application/json.schema.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.format, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties, $.paths./store/inventory.get.responses.200.content.application/json.schema, $.paths./store/inventory.get.responses.200.content.application/json, $.paths./store/inventory.get.responses.200.content, $.paths./store/inventory.get.responses.200, $.paths./store/inventory.get.responses, $.paths./store/inventory.get.security, $.paths./store/inventory.get, $.paths./store/order.post.tags, $.paths./store/order.post.summary, $.paths./store/order.post.description, $.paths./store/order.post.operationId, $.paths./store/order.post.requestBody.content.application/json.schema.$ref, $.paths./store/order.post.requestBody.content.application/json.schema, $.paths./store/order.post.requestBody.content.application/json, $.paths./store/order.post.requestBody.content.application/xml.schema.$ref, $.paths./store/order.post.requestBody.content.application/xml.schema, $.paths./store/order.post.requestBody.content.application/xml, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded, $.paths./store/order.post.requestBody.content, $.paths./store/order.post.requestBody, $.paths./store/order.post.responses.200.description, $.paths./store/order.post.responses.200.content.application/json.schema.$ref, $.paths./store/order.post.responses.200.content.application/json.schema, $.paths./store/order.post.responses.200.content.application/json, $.paths./store/order.post.responses.200.content, $.paths./store/order.post.responses.200, $.paths./store/order.post.responses.405.description, $.paths./store/order.post.responses.405, $.paths./store/order.post.responses, $.paths./store/order.post, $.paths./store/order/{orderId}.get.tags, $.paths./store/order/{orderId}.get.summary, $.paths./store/order/{orderId}.get.description, $.paths./store/order/{orderId}.get.operationId, $.paths./store/order/{orderId}.get.parameters, $.paths./store/order/{orderId}.get.responses.200.description, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/json, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/xml, $.paths./store/order/{orderId}.get.responses.200.content, $.paths./store/order/{orderId}.get.responses.200, $.paths./store/order/{orderId}.get.responses.400.description, $.paths./store/order/{orderId}.get.responses.400, $.paths./store/order/{orderId}.get.responses.404.description, $.paths./store/order/{orderId}.get.responses.404, $.paths./store/order/{orderId}.get.responses, $.paths./store/order/{orderId}.get, $.paths./store/order/{orderId}.delete.tags, $.paths./store/order/{orderId}.delete.summary, $.paths./store/order/{orderId}.delete.description, $.paths./store/order/{orderId}.delete.operationId, $.paths./store/order/{orderId}.delete.parameters, $.paths./store/order/{orderId}.delete.responses.400.description, $.paths./store/order/{orderId}.delete.responses.400, $.paths./store/order/{orderId}.delete.responses.404.description, $.paths./store/order/{orderId}.delete.responses.404, $.paths./store/order/{orderId}.delete.responses, $.paths./store/order/{orderId}.delete, $.paths./user.post.tags, $.paths./user.post.summary, $.paths./user.post.description, $.paths./user.post.operationId, $.paths./user.post.requestBody.description, $.paths./user.post.requestBody.content.application/json.schema.$ref, $.paths./user.post.requestBody.content.application/json.schema, $.paths./user.post.requestBody.content.application/json, $.paths./user.post.requestBody.content.application/xml.schema.$ref, $.paths./user.post.requestBody.content.application/xml.schema, $.paths./user.post.requestBody.content.application/xml, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded, $.paths./user.post.requestBody.content, $.paths./user.post.requestBody, $.paths./user.post.responses.default.description, $.paths./user.post.responses.default.content.application/json.schema.$ref, $.paths./user.post.responses.default.content.application/json.schema, $.paths./user.post.responses.default.content.application/json, $.paths./user.post.responses.default.content.application/xml.schema.$ref, $.paths./user.post.responses.default.content.application/xml.schema, $.paths./user.post.responses.default.content.application/xml, $.paths./user.post.responses.default.content, $.paths./user.post.responses.default, $.paths./user.post.responses, $.paths./user.post, $.paths./user/createWithList.post.tags, $.paths./user/createWithList.post.summary, $.paths./user/createWithList.post.description, $.paths./user/createWithList.post.operationId, $.paths./user/createWithList.post.requestBody.content.application/json.schema.type, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items.$ref, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items, $.paths./user/createWithList.post.requestBody.content.application/json.schema, $.paths./user/createWithList.post.requestBody.content.application/json, $.paths./user/createWithList.post.requestBody.content, $.paths./user/createWithList.post.requestBody, $.paths./user/createWithList.post.responses.200.description, $.paths./user/createWithList.post.responses.200.content.application/json.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/json.schema, $.paths./user/createWithList.post.responses.200.content.application/json, $.paths./user/createWithList.post.responses.200.content.application/xml.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/xml.schema, $.paths./user/createWithList.post.responses.200.content.application/xml, $.paths./user/createWithList.post.responses.200.content, $.paths./user/createWithList.post.responses.200, $.paths./user/createWithList.post.responses.default.description, $.paths./user/createWithList.post.responses.default, $.paths./user/createWithList.post.responses, $.paths./user/createWithList.post, $.paths./user/login.get.tags, $.paths./user/login.get.summary, $.paths./user/login.get.description, $.paths./user/login.get.operationId, $.paths./user/login.get.parameters, $.paths./user/login.get.responses.200.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.type, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.format, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema, $.paths./user/login.get.responses.200.headers.X-Rate-Limit, $.paths./user/login.get.responses.200.headers.X-Expires-After.description, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.type, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.format, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema, $.paths./user/login.get.responses.200.headers.X-Expires-After, $.paths./user/login.get.responses.200.headers, $.paths./user/login.get.responses.200.content.application/xml.schema.type, $.paths./user/login.get.responses.200.content.application/xml.schema, $.paths./user/login.get.responses.200.content.application/xml, $.paths./user/login.get.responses.200.content.application/json.schema.type, $.paths./user/login.get.responses.200.content.application/json.schema, $.paths./user/login.get.responses.200.content.application/json, $.paths./user/login.get.responses.200.content, $.paths./user/login.get.responses.200, $.paths./user/login.get.responses.400.description, $.paths./user/login.get.responses.400, $.paths./user/login.get.responses, $.paths./user/login.get, $.paths./user/{username}.get.tags, $.paths./user/{username}.get.summary, $.paths./user/{username}.get.description, $.paths./user/{username}.get.operationId, $.paths./user/{username}.get.parameters, $.paths./user/{username}.get.responses.200.description, $.paths./user/{username}.get.responses.200.content.application/json.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/json.schema, $.paths./user/{username}.get.responses.200.content.application/json, $.paths./user/{username}.get.responses.200.content.application/xml.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/xml.schema, $.paths./user/{username}.get.responses.200.content.application/xml, $.paths./user/{username}.get.responses.200.content, $.paths./user/{username}.get.responses.200, $.paths./user/{username}.get.responses.400.description, $.paths./user/{username}.get.responses.400, $.paths./user/{username}.get.responses.404.description, $.paths./user/{username}.get.responses.404, $.paths./user/{username}.get.responses, $.paths./user/{username}.get, $.paths./user/{username}.put.tags, $.paths./user/{username}.put.summary, $.paths./user/{username}.put.description, $.paths./user/{username}.put.operationId, $.paths./user/{username}.put.parameters, $.paths./user/{username}.put.requestBody.description, $.paths./user/{username}.put.requestBody.content.application/json.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/json.schema, $.paths./user/{username}.put.requestBody.content.application/json, $.paths./user/{username}.put.requestBody.content.application/xml.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/xml.schema, $.paths./user/{username}.put.requestBody.content.application/xml, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded, $.paths./user/{username}.put.requestBody.content, $.paths./user/{username}.put.requestBody, $.paths./user/{username}.put.responses.default.description, $.paths./user/{username}.put.responses.default, $.paths./user/{username}.put.responses, $.paths./user/{username}.put, $.paths./user/{username}.delete.tags, $.paths./user/{username}.delete.summary, $.paths./user/{username}.delete.description, $.paths./user/{username}.delete.operationId, $.paths./user/{username}.delete.parameters, $.paths./user/{username}.delete.responses.400.description, $.paths./user/{username}.delete.responses.400, $.paths./user/{username}.delete.responses.404.description, $.paths./user/{username}.delete.responses.404, $.paths./user/{username}.delete.responses, $.paths./user/{username}.delete
There are unevaluated properties at following paths $.components.requestBodies.Pet.content.application/json.schema.$ref
There are unevaluated properties at following paths $.components.requestBodies.Pet.content.application/xml.schema.$ref
There are unevaluated properties at following paths $.components.requestBodies.Pet.content.application/json.schema.$ref, $.components.requestBodies.Pet.content.application/json.schema, $.components.requestBodies.Pet.content.application/json, $.components.requestBodies.Pet.content.application/xml.schema.$ref, $.components.requestBodies.Pet.content.application/xml.schema, $.components.requestBodies.Pet.content.application/xml
There are unevaluated properties at following paths $.components.requestBodies.UserArray.content.application/json.schema.type, $.components.requestBodies.UserArray.content.application/json.schema.items.$ref, $.components.requestBodies.UserArray.content.application/json.schema.items
There are unevaluated properties at following paths $.components.requestBodies.UserArray.content.application/json.schema.type, $.components.requestBodies.UserArray.content.application/json.schema.items.$ref, $.components.requestBodies.UserArray.content.application/json.schema.items, $.components.requestBodies.UserArray.content.application/json.schema, $.components.requestBodies.UserArray.content.application/json
There are unevaluated properties at following paths $.components.schemas.Order.type, $.components.schemas.Order.properties.id.type, $.components.schemas.Order.properties.id.format, $.components.schemas.Order.properties.id.example, $.components.schemas.Order.properties.id, $.components.schemas.Order.properties.petId.type, $.components.schemas.Order.properties.petId.format, $.components.schemas.Order.properties.petId.example, $.components.schemas.Order.properties.petId, $.components.schemas.Order.properties.quantity.type, $.components.schemas.Order.properties.quantity.format, $.components.schemas.Order.properties.quantity.example, $.components.schemas.Order.properties.quantity, $.components.schemas.Order.properties.shipDate.type, $.components.schemas.Order.properties.shipDate.format, $.components.schemas.Order.properties.shipDate, $.components.schemas.Order.properties.status.type, $.components.schemas.Order.properties.status.description, $.components.schemas.Order.properties.status.example, $.components.schemas.Order.properties.status.enum, $.components.schemas.Order.properties.status, $.components.schemas.Order.properties.complete.type, $.components.schemas.Order.properties.complete, $.components.schemas.Order.properties, $.components.schemas.Order.xml.name, $.components.schemas.Order.xml, $.components.schemas.Customer.type, $.components.schemas.Customer.properties.id.type, $.components.schemas.Customer.properties.id.format, $.components.schemas.Customer.properties.id.example, $.components.schemas.Customer.properties.id, $.components.schemas.Customer.properties.username.type, $.components.schemas.Customer.properties.username.example, $.components.schemas.Customer.properties.username, $.components.schemas.Customer.properties.address.type, $.components.schemas.Customer.properties.address.xml.name, $.components.schemas.Customer.properties.address.xml.wrapped, $.components.schemas.Customer.properties.address.xml, $.components.schemas.Customer.properties.address.items.$ref, $.components.schemas.Customer.properties.address.items, $.components.schemas.Customer.properties.address, $.components.schemas.Customer.properties, $.components.schemas.Customer.xml.name, $.components.schemas.Customer.xml, $.components.schemas.Address.type, $.components.schemas.Address.properties.street.type, $.components.schemas.Address.properties.street.example, $.components.schemas.Address.properties.street, $.components.schemas.Address.properties.city.type, $.components.schemas.Address.properties.city.example, $.components.schemas.Address.properties.city, $.components.schemas.Address.properties.state.type, $.components.schemas.Address.properties.state.example, $.components.schemas.Address.properties.state, $.components.schemas.Address.properties.zip.type, $.components.schemas.Address.properties.zip.example, $.components.schemas.Address.properties.zip, $.components.schemas.Address.properties, $.components.schemas.Address.xml.name, $.components.schemas.Address.xml, $.components.schemas.Category.type, $.components.schemas.Category.properties.id.type, $.components.schemas.Category.properties.id.format, $.components.schemas.Category.properties.id.example, $.components.schemas.Category.properties.id, $.components.schemas.Category.properties.name.type, $.components.schemas.Category.properties.name.example, $.components.schemas.Category.properties.name, $.components.schemas.Category.properties, $.components.schemas.Category.xml.name, $.components.schemas.Category.xml, $.components.schemas.User.type, $.components.schemas.User.properties.id.type, $.components.schemas.User.properties.id.format, $.components.schemas.User.properties.id.example, $.components.schemas.User.properties.id, $.components.schemas.User.properties.username.type, $.components.schemas.User.properties.username.example, $.components.schemas.User.properties.username, $.components.schemas.User.properties.firstName.type, $.components.schemas.User.properties.firstName.example, $.components.schemas.User.properties.firstName, $.components.schemas.User.properties.lastName.type, $.components.schemas.User.properties.lastName.example, $.components.schemas.User.properties.lastName, $.components.schemas.User.properties.email.type, $.components.schemas.User.properties.email.example, $.components.schemas.User.properties.email, $.components.schemas.User.properties.password.type, $.components.schemas.User.properties.password.example, $.components.schemas.User.properties.password, $.components.schemas.User.properties.phone.type, $.components.schemas.User.properties.phone.example, $.components.schemas.User.properties.phone, $.components.schemas.User.properties.userStatus.type, $.components.schemas.User.properties.userStatus.description, $.components.schemas.User.properties.userStatus.format, $.components.schemas.User.properties.userStatus.example, $.components.schemas.User.properties.userStatus, $.components.schemas.User.properties, $.components.schemas.User.xml.name, $.components.schemas.User.xml, $.components.schemas.Tag.type, $.components.schemas.Tag.properties.id.type, $.components.schemas.Tag.properties.id.format, $.components.schemas.Tag.properties.id, $.components.schemas.Tag.properties.name.type, $.components.schemas.Tag.properties.name, $.components.schemas.Tag.properties, $.components.schemas.Tag.xml.name, $.components.schemas.Tag.xml, $.components.schemas.Pet.required, $.components.schemas.Pet.type, $.components.schemas.Pet.properties.id.type, $.components.schemas.Pet.properties.id.format, $.components.schemas.Pet.properties.id.example, $.components.schemas.Pet.properties.id, $.components.schemas.Pet.properties.name.type, $.components.schemas.Pet.properties.name.example, $.components.schemas.Pet.properties.name, $.components.schemas.Pet.properties.category.$ref, $.components.schemas.Pet.properties.category, $.components.schemas.Pet.properties.photoUrls.type, $.components.schemas.Pet.properties.photoUrls.xml.wrapped, $.components.schemas.Pet.properties.photoUrls.xml, $.components.schemas.Pet.properties.photoUrls.items.type, $.components.schemas.Pet.properties.photoUrls.items.xml.name, $.components.schemas.Pet.properties.photoUrls.items.xml, $.components.schemas.Pet.properties.photoUrls.items, $.components.schemas.Pet.properties.photoUrls, $.components.schemas.Pet.properties.tags.type, $.components.schemas.Pet.properties.tags.xml.wrapped, $.components.schemas.Pet.properties.tags.xml, $.components.schemas.Pet.properties.tags.items.$ref, $.components.schemas.Pet.properties.tags.items, $.components.schemas.Pet.properties.tags, $.components.schemas.Pet.properties.status.type, $.components.schemas.Pet.properties.status.description, $.components.schemas.Pet.properties.status.enum, $.components.schemas.Pet.properties.status, $.components.schemas.Pet.properties, $.components.schemas.Pet.xml.name, $.components.schemas.Pet.xml, $.components.schemas.ApiResponse.type, $.components.schemas.ApiResponse.properties.code.type, $.components.schemas.ApiResponse.properties.code.format, $.components.schemas.ApiResponse.properties.code, $.components.schemas.ApiResponse.properties.type.type, $.components.schemas.ApiResponse.properties.type, $.components.schemas.ApiResponse.properties.message.type, $.components.schemas.ApiResponse.properties.message, $.components.schemas.ApiResponse.properties, $.components.schemas.ApiResponse.xml.name, $.components.schemas.ApiResponse.xml, $.components.requestBodies.Pet.description, $.components.requestBodies.Pet.content.application/json.schema.$ref, $.components.requestBodies.Pet.content.application/json.schema, $.components.requestBodies.Pet.content.application/json, $.components.requestBodies.Pet.content.application/xml.schema.$ref, $.components.requestBodies.Pet.content.application/xml.schema, $.components.requestBodies.Pet.content.application/xml, $.components.requestBodies.Pet.content, $.components.requestBodies.UserArray.description, $.components.requestBodies.UserArray.content.application/json.schema.type, $.components.requestBodies.UserArray.content.application/json.schema.items.$ref, $.components.requestBodies.UserArray.content.application/json.schema.items, $.components.requestBodies.UserArray.content.application/json.schema, $.components.requestBodies.UserArray.content.application/json, $.components.requestBodies.UserArray.content
There are unevaluated properties at following paths $.paths./pet.put.tags, $.paths./pet.put.summary, $.paths./pet.put.description, $.paths./pet.put.operationId, $.paths./pet.put.requestBody.description, $.paths./pet.put.requestBody.content.application/json.schema.$ref, $.paths./pet.put.requestBody.content.application/json.schema, $.paths./pet.put.requestBody.content.application/json, $.paths./pet.put.requestBody.content.application/xml.schema.$ref, $.paths./pet.put.requestBody.content.application/xml.schema, $.paths./pet.put.requestBody.content.application/xml, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./pet.put.requestBody.content.application/x-www-form-urlencoded, $.paths./pet.put.requestBody.content, $.paths./pet.put.requestBody.required, $.paths./pet.put.requestBody, $.paths./pet.put.responses.200.description, $.paths./pet.put.responses.200.content.application/json.schema.$ref, $.paths./pet.put.responses.200.content.application/json.schema, $.paths./pet.put.responses.200.content.application/json, $.paths./pet.put.responses.200.content.application/xml.schema.$ref, $.paths./pet.put.responses.200.content.application/xml.schema, $.paths./pet.put.responses.200.content.application/xml, $.paths./pet.put.responses.200.content, $.paths./pet.put.responses.200, $.paths./pet.put.responses.400.description, $.paths./pet.put.responses.400, $.paths./pet.put.responses.404.description, $.paths./pet.put.responses.404, $.paths./pet.put.responses.405.description, $.paths./pet.put.responses.405, $.paths./pet.put.responses, $.paths./pet.put.security, $.paths./pet.put, $.paths./pet.post.tags, $.paths./pet.post.summary, $.paths./pet.post.description, $.paths./pet.post.operationId, $.paths./pet.post.requestBody.description, $.paths./pet.post.requestBody.content.application/json.schema.$ref, $.paths./pet.post.requestBody.content.application/json.schema, $.paths./pet.post.requestBody.content.application/json, $.paths./pet.post.requestBody.content.application/xml.schema.$ref, $.paths./pet.post.requestBody.content.application/xml.schema, $.paths./pet.post.requestBody.content.application/xml, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./pet.post.requestBody.content.application/x-www-form-urlencoded, $.paths./pet.post.requestBody.content, $.paths./pet.post.requestBody.required, $.paths./pet.post.requestBody, $.paths./pet.post.responses.200.description, $.paths./pet.post.responses.200.content.application/json.schema.$ref, $.paths./pet.post.responses.200.content.application/json.schema, $.paths./pet.post.responses.200.content.application/json, $.paths./pet.post.responses.200.content.application/xml.schema.$ref, $.paths./pet.post.responses.200.content.application/xml.schema, $.paths./pet.post.responses.200.content.application/xml, $.paths./pet.post.responses.200.content, $.paths./pet.post.responses.200, $.paths./pet.post.responses.405.description, $.paths./pet.post.responses.405, $.paths./pet.post.responses, $.paths./pet.post.security, $.paths./pet.post, $.paths./pet, $.paths./pet/findByStatus.get.tags, $.paths./pet/findByStatus.get.summary, $.paths./pet/findByStatus.get.description, $.paths./pet/findByStatus.get.operationId, $.paths./pet/findByStatus.get.parameters, $.paths./pet/findByStatus.get.responses.200.description, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/json.schema, $.paths./pet/findByStatus.get.responses.200.content.application/json, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByStatus.get.responses.200.content.application/xml.schema, $.paths./pet/findByStatus.get.responses.200.content.application/xml, $.paths./pet/findByStatus.get.responses.200.content, $.paths./pet/findByStatus.get.responses.200, $.paths./pet/findByStatus.get.responses.400.description, $.paths./pet/findByStatus.get.responses.400, $.paths./pet/findByStatus.get.responses, $.paths./pet/findByStatus.get.security, $.paths./pet/findByStatus.get, $.paths./pet/findByStatus, $.paths./pet/findByTags.get.tags, $.paths./pet/findByTags.get.summary, $.paths./pet/findByTags.get.description, $.paths./pet/findByTags.get.operationId, $.paths./pet/findByTags.get.parameters, $.paths./pet/findByTags.get.responses.200.description, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/json.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/json.schema, $.paths./pet/findByTags.get.responses.200.content.application/json, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.type, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items.$ref, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema.items, $.paths./pet/findByTags.get.responses.200.content.application/xml.schema, $.paths./pet/findByTags.get.responses.200.content.application/xml, $.paths./pet/findByTags.get.responses.200.content, $.paths./pet/findByTags.get.responses.200, $.paths./pet/findByTags.get.responses.400.description, $.paths./pet/findByTags.get.responses.400, $.paths./pet/findByTags.get.responses, $.paths./pet/findByTags.get.security, $.paths./pet/findByTags.get, $.paths./pet/findByTags, $.paths./pet/{petId}.get.tags, $.paths./pet/{petId}.get.summary, $.paths./pet/{petId}.get.description, $.paths./pet/{petId}.get.operationId, $.paths./pet/{petId}.get.parameters, $.paths./pet/{petId}.get.responses.200.description, $.paths./pet/{petId}.get.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/json.schema, $.paths./pet/{petId}.get.responses.200.content.application/json, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema.$ref, $.paths./pet/{petId}.get.responses.200.content.application/xml.schema, $.paths./pet/{petId}.get.responses.200.content.application/xml, $.paths./pet/{petId}.get.responses.200.content, $.paths./pet/{petId}.get.responses.200, $.paths./pet/{petId}.get.responses.400.description, $.paths./pet/{petId}.get.responses.400, $.paths./pet/{petId}.get.responses.404.description, $.paths./pet/{petId}.get.responses.404, $.paths./pet/{petId}.get.responses, $.paths./pet/{petId}.get.security, $.paths./pet/{petId}.get, $.paths./pet/{petId}.post.tags, $.paths./pet/{petId}.post.summary, $.paths./pet/{petId}.post.description, $.paths./pet/{petId}.post.operationId, $.paths./pet/{petId}.post.parameters, $.paths./pet/{petId}.post.responses.405.description, $.paths./pet/{petId}.post.responses.405, $.paths./pet/{petId}.post.responses, $.paths./pet/{petId}.post.security, $.paths./pet/{petId}.post, $.paths./pet/{petId}.delete.tags, $.paths./pet/{petId}.delete.summary, $.paths./pet/{petId}.delete.description, $.paths./pet/{petId}.delete.operationId, $.paths./pet/{petId}.delete.parameters, $.paths./pet/{petId}.delete.responses.400.description, $.paths./pet/{petId}.delete.responses.400, $.paths./pet/{petId}.delete.responses, $.paths./pet/{petId}.delete.security, $.paths./pet/{petId}.delete, $.paths./pet/{petId}, $.paths./pet/{petId}/uploadImage.post.tags, $.paths./pet/{petId}/uploadImage.post.summary, $.paths./pet/{petId}/uploadImage.post.description, $.paths./pet/{petId}/uploadImage.post.operationId, $.paths./pet/{petId}/uploadImage.post.parameters, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.type, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema.format, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream.schema, $.paths./pet/{petId}/uploadImage.post.requestBody.content.application/octet-stream, $.paths./pet/{petId}/uploadImage.post.requestBody.content, $.paths./pet/{petId}/uploadImage.post.requestBody, $.paths./pet/{petId}/uploadImage.post.responses.200.description, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema.$ref, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json.schema, $.paths./pet/{petId}/uploadImage.post.responses.200.content.application/json, $.paths./pet/{petId}/uploadImage.post.responses.200.content, $.paths./pet/{petId}/uploadImage.post.responses.200, $.paths./pet/{petId}/uploadImage.post.responses, $.paths./pet/{petId}/uploadImage.post.security, $.paths./pet/{petId}/uploadImage.post, $.paths./pet/{petId}/uploadImage, $.paths./store/inventory.get.tags, $.paths./store/inventory.get.summary, $.paths./store/inventory.get.description, $.paths./store/inventory.get.operationId, $.paths./store/inventory.get.responses.200.description, $.paths./store/inventory.get.responses.200.content.application/json.schema.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.type, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties.format, $.paths./store/inventory.get.responses.200.content.application/json.schema.additionalProperties, $.paths./store/inventory.get.responses.200.content.application/json.schema, $.paths./store/inventory.get.responses.200.content.application/json, $.paths./store/inventory.get.responses.200.content, $.paths./store/inventory.get.responses.200, $.paths./store/inventory.get.responses, $.paths./store/inventory.get.security, $.paths./store/inventory.get, $.paths./store/inventory, $.paths./store/order.post.tags, $.paths./store/order.post.summary, $.paths./store/order.post.description, $.paths./store/order.post.operationId, $.paths./store/order.post.requestBody.content.application/json.schema.$ref, $.paths./store/order.post.requestBody.content.application/json.schema, $.paths./store/order.post.requestBody.content.application/json, $.paths./store/order.post.requestBody.content.application/xml.schema.$ref, $.paths./store/order.post.requestBody.content.application/xml.schema, $.paths./store/order.post.requestBody.content.application/xml, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./store/order.post.requestBody.content.application/x-www-form-urlencoded, $.paths./store/order.post.requestBody.content, $.paths./store/order.post.requestBody, $.paths./store/order.post.responses.200.description, $.paths./store/order.post.responses.200.content.application/json.schema.$ref, $.paths./store/order.post.responses.200.content.application/json.schema, $.paths./store/order.post.responses.200.content.application/json, $.paths./store/order.post.responses.200.content, $.paths./store/order.post.responses.200, $.paths./store/order.post.responses.405.description, $.paths./store/order.post.responses.405, $.paths./store/order.post.responses, $.paths./store/order.post, $.paths./store/order, $.paths./store/order/{orderId}.get.tags, $.paths./store/order/{orderId}.get.summary, $.paths./store/order/{orderId}.get.description, $.paths./store/order/{orderId}.get.operationId, $.paths./store/order/{orderId}.get.parameters, $.paths./store/order/{orderId}.get.responses.200.description, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/json.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/json, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema.$ref, $.paths./store/order/{orderId}.get.responses.200.content.application/xml.schema, $.paths./store/order/{orderId}.get.responses.200.content.application/xml, $.paths./store/order/{orderId}.get.responses.200.content, $.paths./store/order/{orderId}.get.responses.200, $.paths./store/order/{orderId}.get.responses.400.description, $.paths./store/order/{orderId}.get.responses.400, $.paths./store/order/{orderId}.get.responses.404.description, $.paths./store/order/{orderId}.get.responses.404, $.paths./store/order/{orderId}.get.responses, $.paths./store/order/{orderId}.get, $.paths./store/order/{orderId}.delete.tags, $.paths./store/order/{orderId}.delete.summary, $.paths./store/order/{orderId}.delete.description, $.paths./store/order/{orderId}.delete.operationId, $.paths./store/order/{orderId}.delete.parameters, $.paths./store/order/{orderId}.delete.responses.400.description, $.paths./store/order/{orderId}.delete.responses.400, $.paths./store/order/{orderId}.delete.responses.404.description, $.paths./store/order/{orderId}.delete.responses.404, $.paths./store/order/{orderId}.delete.responses, $.paths./store/order/{orderId}.delete, $.paths./store/order/{orderId}, $.paths./user.post.tags, $.paths./user.post.summary, $.paths./user.post.description, $.paths./user.post.operationId, $.paths./user.post.requestBody.description, $.paths./user.post.requestBody.content.application/json.schema.$ref, $.paths./user.post.requestBody.content.application/json.schema, $.paths./user.post.requestBody.content.application/json, $.paths./user.post.requestBody.content.application/xml.schema.$ref, $.paths./user.post.requestBody.content.application/xml.schema, $.paths./user.post.requestBody.content.application/xml, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./user.post.requestBody.content.application/x-www-form-urlencoded, $.paths./user.post.requestBody.content, $.paths./user.post.requestBody, $.paths./user.post.responses.default.description, $.paths./user.post.responses.default.content.application/json.schema.$ref, $.paths./user.post.responses.default.content.application/json.schema, $.paths./user.post.responses.default.content.application/json, $.paths./user.post.responses.default.content.application/xml.schema.$ref, $.paths./user.post.responses.default.content.application/xml.schema, $.paths./user.post.responses.default.content.application/xml, $.paths./user.post.responses.default.content, $.paths./user.post.responses.default, $.paths./user.post.responses, $.paths./user.post, $.paths./user, $.paths./user/createWithList.post.tags, $.paths./user/createWithList.post.summary, $.paths./user/createWithList.post.description, $.paths./user/createWithList.post.operationId, $.paths./user/createWithList.post.requestBody.content.application/json.schema.type, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items.$ref, $.paths./user/createWithList.post.requestBody.content.application/json.schema.items, $.paths./user/createWithList.post.requestBody.content.application/json.schema, $.paths./user/createWithList.post.requestBody.content.application/json, $.paths./user/createWithList.post.requestBody.content, $.paths./user/createWithList.post.requestBody, $.paths./user/createWithList.post.responses.200.description, $.paths./user/createWithList.post.responses.200.content.application/json.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/json.schema, $.paths./user/createWithList.post.responses.200.content.application/json, $.paths./user/createWithList.post.responses.200.content.application/xml.schema.$ref, $.paths./user/createWithList.post.responses.200.content.application/xml.schema, $.paths./user/createWithList.post.responses.200.content.application/xml, $.paths./user/createWithList.post.responses.200.content, $.paths./user/createWithList.post.responses.200, $.paths./user/createWithList.post.responses.default.description, $.paths./user/createWithList.post.responses.default, $.paths./user/createWithList.post.responses, $.paths./user/createWithList.post, $.paths./user/createWithList, $.paths./user/login.get.tags, $.paths./user/login.get.summary, $.paths./user/login.get.description, $.paths./user/login.get.operationId, $.paths./user/login.get.parameters, $.paths./user/login.get.responses.200.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.description, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.type, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema.format, $.paths./user/login.get.responses.200.headers.X-Rate-Limit.schema, $.paths./user/login.get.responses.200.headers.X-Rate-Limit, $.paths./user/login.get.responses.200.headers.X-Expires-After.description, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.type, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema.format, $.paths./user/login.get.responses.200.headers.X-Expires-After.schema, $.paths./user/login.get.responses.200.headers.X-Expires-After, $.paths./user/login.get.responses.200.headers, $.paths./user/login.get.responses.200.content.application/xml.schema.type, $.paths./user/login.get.responses.200.content.application/xml.schema, $.paths./user/login.get.responses.200.content.application/xml, $.paths./user/login.get.responses.200.content.application/json.schema.type, $.paths./user/login.get.responses.200.content.application/json.schema, $.paths./user/login.get.responses.200.content.application/json, $.paths./user/login.get.responses.200.content, $.paths./user/login.get.responses.200, $.paths./user/login.get.responses.400.description, $.paths./user/login.get.responses.400, $.paths./user/login.get.responses, $.paths./user/login.get, $.paths./user/login, $.paths./user/logout.get.tags, $.paths./user/logout.get.summary, $.paths./user/logout.get.description, $.paths./user/logout.get.operationId, $.paths./user/logout.get.parameters, $.paths./user/logout.get.responses.default.description, $.paths./user/logout.get.responses.default, $.paths./user/logout.get.responses, $.paths./user/logout.get, $.paths./user/logout, $.paths./user/{username}.get.tags, $.paths./user/{username}.get.summary, $.paths./user/{username}.get.description, $.paths./user/{username}.get.operationId, $.paths./user/{username}.get.parameters, $.paths./user/{username}.get.responses.200.description, $.paths./user/{username}.get.responses.200.content.application/json.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/json.schema, $.paths./user/{username}.get.responses.200.content.application/json, $.paths./user/{username}.get.responses.200.content.application/xml.schema.$ref, $.paths./user/{username}.get.responses.200.content.application/xml.schema, $.paths./user/{username}.get.responses.200.content.application/xml, $.paths./user/{username}.get.responses.200.content, $.paths./user/{username}.get.responses.200, $.paths./user/{username}.get.responses.400.description, $.paths./user/{username}.get.responses.400, $.paths./user/{username}.get.responses.404.description, $.paths./user/{username}.get.responses.404, $.paths./user/{username}.get.responses, $.paths./user/{username}.get, $.paths./user/{username}.put.tags, $.paths./user/{username}.put.summary, $.paths./user/{username}.put.description, $.paths./user/{username}.put.operationId, $.paths./user/{username}.put.parameters, $.paths./user/{username}.put.requestBody.description, $.paths./user/{username}.put.requestBody.content.application/json.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/json.schema, $.paths./user/{username}.put.requestBody.content.application/json, $.paths./user/{username}.put.requestBody.content.application/xml.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/xml.schema, $.paths./user/{username}.put.requestBody.content.application/xml, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema.$ref, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded.schema, $.paths./user/{username}.put.requestBody.content.application/x-www-form-urlencoded, $.paths./user/{username}.put.requestBody.content, $.paths./user/{username}.put.requestBody, $.paths./user/{username}.put.responses.default.description, $.paths./user/{username}.put.responses.default, $.paths./user/{username}.put.responses, $.paths./user/{username}.put, $.paths./user/{username}.delete.tags, $.paths./user/{username}.delete.summary, $.paths./user/{username}.delete.description, $.paths./user/{username}.delete.operationId, $.paths./user/{username}.delete.parameters, $.paths./user/{username}.delete.responses.400.description, $.paths./user/{username}.delete.responses.400, $.paths./user/{username}.delete.responses.404.description, $.paths./user/{username}.delete.responses.404, $.paths./user/{username}.delete.responses, $.paths./user/{username}.delete, $.paths./user/{username}, $.components.schemas.Order.type, $.components.schemas.Order.properties.id.type, $.components.schemas.Order.properties.id.format, $.components.schemas.Order.properties.id.example, $.components.schemas.Order.properties.id, $.components.schemas.Order.properties.petId.type, $.components.schemas.Order.properties.petId.format, $.components.schemas.Order.properties.petId.example, $.components.schemas.Order.properties.petId, $.components.schemas.Order.properties.quantity.type, $.components.schemas.Order.properties.quantity.format, $.components.schemas.Order.properties.quantity.example, $.components.schemas.Order.properties.quantity, $.components.schemas.Order.properties.shipDate.type, $.components.schemas.Order.properties.shipDate.format, $.components.schemas.Order.properties.shipDate, $.components.schemas.Order.properties.status.type, $.components.schemas.Order.properties.status.description, $.components.schemas.Order.properties.status.example, $.components.schemas.Order.properties.status.enum, $.components.schemas.Order.properties.status, $.components.schemas.Order.properties.complete.type, $.components.schemas.Order.properties.complete, $.components.schemas.Order.properties, $.components.schemas.Order.xml.name, $.components.schemas.Order.xml, $.components.schemas.Order, $.components.schemas.Customer.type, $.components.schemas.Customer.properties.id.type, $.components.schemas.Customer.properties.id.format, $.components.schemas.Customer.properties.id.example, $.components.schemas.Customer.properties.id, $.components.schemas.Customer.properties.username.type, $.components.schemas.Customer.properties.username.example, $.components.schemas.Customer.properties.username, $.components.schemas.Customer.properties.address.type, $.components.schemas.Customer.properties.address.xml.name, $.components.schemas.Customer.properties.address.xml.wrapped, $.components.schemas.Customer.properties.address.xml, $.components.schemas.Customer.properties.address.items.$ref, $.components.schemas.Customer.properties.address.items, $.components.schemas.Customer.properties.address, $.components.schemas.Customer.properties, $.components.schemas.Customer.xml.name, $.components.schemas.Customer.xml, $.components.schemas.Customer, $.components.schemas.Address.type, $.components.schemas.Address.properties.street.type, $.components.schemas.Address.properties.street.example, $.components.schemas.Address.properties.street, $.components.schemas.Address.properties.city.type, $.components.schemas.Address.properties.city.example, $.components.schemas.Address.properties.city, $.components.schemas.Address.properties.state.type, $.components.schemas.Address.properties.state.example, $.components.schemas.Address.properties.state, $.components.schemas.Address.properties.zip.type, $.components.schemas.Address.properties.zip.example, $.components.schemas.Address.properties.zip, $.components.schemas.Address.properties, $.components.schemas.Address.xml.name, $.components.schemas.Address.xml, $.components.schemas.Address, $.components.schemas.Category.type, $.components.schemas.Category.properties.id.type, $.components.schemas.Category.properties.id.format, $.components.schemas.Category.properties.id.example, $.components.schemas.Category.properties.id, $.components.schemas.Category.properties.name.type, $.components.schemas.Category.properties.name.example, $.components.schemas.Category.properties.name, $.components.schemas.Category.properties, $.components.schemas.Category.xml.name, $.components.schemas.Category.xml, $.components.schemas.Category, $.components.schemas.User.type, $.components.schemas.User.properties.id.type, $.components.schemas.User.properties.id.format, $.components.schemas.User.properties.id.example, $.components.schemas.User.properties.id, $.components.schemas.User.properties.username.type, $.components.schemas.User.properties.username.example, $.components.schemas.User.properties.username, $.components.schemas.User.properties.firstName.type, $.components.schemas.User.properties.firstName.example, $.components.schemas.User.properties.firstName, $.components.schemas.User.properties.lastName.type, $.components.schemas.User.properties.lastName.example, $.components.schemas.User.properties.lastName, $.components.schemas.User.properties.email.type, $.components.schemas.User.properties.email.example, $.components.schemas.User.properties.email, $.components.schemas.User.properties.password.type, $.components.schemas.User.properties.password.example, $.components.schemas.User.properties.password, $.components.schemas.User.properties.phone.type, $.components.schemas.User.properties.phone.example, $.components.schemas.User.properties.phone, $.components.schemas.User.properties.userStatus.type, $.components.schemas.User.properties.userStatus.description, $.components.schemas.User.properties.userStatus.format, $.components.schemas.User.properties.userStatus.example, $.components.schemas.User.properties.userStatus, $.components.schemas.User.properties, $.components.schemas.User.xml.name, $.components.schemas.User.xml, $.components.schemas.User, $.components.schemas.Tag.type, $.components.schemas.Tag.properties.id.type, $.components.schemas.Tag.properties.id.format, $.components.schemas.Tag.properties.id, $.components.schemas.Tag.properties.name.type, $.components.schemas.Tag.properties.name, $.components.schemas.Tag.properties, $.components.schemas.Tag.xml.name, $.components.schemas.Tag.xml, $.components.schemas.Tag, $.components.schemas.Pet.required, $.components.schemas.Pet.type, $.components.schemas.Pet.properties.id.type, $.components.schemas.Pet.properties.id.format, $.components.schemas.Pet.properties.id.example, $.components.schemas.Pet.properties.id, $.components.schemas.Pet.properties.name.type, $.components.schemas.Pet.properties.name.example, $.components.schemas.Pet.properties.name, $.components.schemas.Pet.properties.category.$ref, $.components.schemas.Pet.properties.category, $.components.schemas.Pet.properties.photoUrls.type, $.components.schemas.Pet.properties.photoUrls.xml.wrapped, $.components.schemas.Pet.properties.photoUrls.xml, $.components.schemas.Pet.properties.photoUrls.items.type, $.components.schemas.Pet.properties.photoUrls.items.xml.name, $.components.schemas.Pet.properties.photoUrls.items.xml, $.components.schemas.Pet.properties.photoUrls.items, $.components.schemas.Pet.properties.photoUrls, $.components.schemas.Pet.properties.tags.type, $.components.schemas.Pet.properties.tags.xml.wrapped, $.components.schemas.Pet.properties.tags.xml, $.components.schemas.Pet.properties.tags.items.$ref, $.components.schemas.Pet.properties.tags.items, $.components.schemas.Pet.properties.tags, $.components.schemas.Pet.properties.status.type, $.components.schemas.Pet.properties.status.description, $.components.schemas.Pet.properties.status.enum, $.components.schemas.Pet.properties.status, $.components.schemas.Pet.properties, $.components.schemas.Pet.xml.name, $.components.schemas.Pet.xml, $.components.schemas.Pet, $.components.schemas.ApiResponse.type, $.components.schemas.ApiResponse.properties.code.type, $.components.schemas.ApiResponse.properties.code.format, $.components.schemas.ApiResponse.properties.code, $.components.schemas.ApiResponse.properties.type.type, $.components.schemas.ApiResponse.properties.type, $.components.schemas.ApiResponse.properties.message.type, $.components.schemas.ApiResponse.properties.message, $.components.schemas.ApiResponse.properties, $.components.schemas.ApiResponse.xml.name, $.components.schemas.ApiResponse.xml, $.components.schemas.ApiResponse, $.components.schemas, $.components.requestBodies.Pet.description, $.components.requestBodies.Pet.content.application/json.schema.$ref, $.components.requestBodies.Pet.content.application/json.schema, $.components.requestBodies.Pet.content.application/json, $.components.requestBodies.Pet.content.application/xml.schema.$ref, $.components.requestBodies.Pet.content.application/xml.schema, $.components.requestBodies.Pet.content.application/xml, $.components.requestBodies.Pet.content, $.components.requestBodies.Pet, $.components.requestBodies.UserArray.description, $.components.requestBodies.UserArray.content.application/json.schema.type, $.components.requestBodies.UserArray.content.application/json.schema.items.$ref, $.components.requestBodies.UserArray.content.application/json.schema.items, $.components.requestBodies.UserArray.content.application/json.schema, $.components.requestBodies.UserArray.content.application/json, $.components.requestBodies.UserArray.content, $.components.requestBodies.UserArray, $.components.requestBodies, $.components.securitySchemes.petstore_auth.type, $.components.securitySchemes.petstore_auth.flows.implicit.authorizationUrl, $.components.securitySchemes.petstore_auth.flows.implicit.scopes.write:pets, $.components.securitySchemes.petstore_auth.flows.implicit.scopes.read:pets, $.components.securitySchemes.petstore_auth.flows.implicit.scopes, $.components.securitySchemes.petstore_auth.flows.implicit, $.components.securitySchemes.petstore_auth.flows, $.components.securitySchemes.petstore_auth, $.components.securitySchemes.api_key.type, $.components.securitySchemes.api_key.name, $.components.securitySchemes.api_key.in, $.components.securitySchemes.api_key, $.components.securitySchemes

@bweben
Copy link
Author

bweben commented May 8, 2023

@stevehu were you able to verify the error?

@stevehu
Copy link
Contributor

stevehu commented May 9, 2023

Not yet. Would you be able to create a test case to reproduce this error? Thanks.

@bweben
Copy link
Author

bweben commented May 30, 2023

@stevehu sorry for the long delay. I've now created a pr with the test #791

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants