We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Having following api and models: api.yaml:
swagger: "2.0" info: title: test data for nested list ext references version: '0.0.0' paths: /: get: responses: "200": schema: $ref: "./PetList.yaml"
PetList.yaml:
title: "PetList" properties: pets: type: array items: $ref: "./Pet.yaml"
Pet.yaml:
title: "Pet" properties: allergies: type: array items: $ref: "./Allergy.yaml"
Allergy.yaml:
title: "Allergy" properties: name: type: string severity: type: number
The Allergy model is not processed at all.
The text was updated successfully, but these errors were encountered:
This might be related to #270
Sorry, something went wrong.
I have not tested but #284 might resolve this.
Yes, this should be fixed now.
tests for #286
328c981
Merge pull request #296 from swagger-api/issue-286
b67f507
It was fixed as @diegode mentioned. Added tests to prove.
No branches or pull requests
Having following api and models:
api.yaml:
PetList.yaml:
Pet.yaml:
Allergy.yaml:
The Allergy model is not processed at all.
The text was updated successfully, but these errors were encountered: