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
Describe the bug Sibling values alongside a $ref are ignored by swagger editor 2.0.
If we want to add properties to $ref, It is suggested to wrap $ref into allOf.
types.Person: type: object properties: class: desription: aaa $ref: '#/definitions/types.Class'
as above, description will be ignored.
description
Expected behavior
types.Person: type: object properties: class: desription: aaa allOf - $ref: '#/definitions/types.Class'
The text was updated successfully, but these errors were encountered:
fix #1390
eef9700
d66b66c
No branches or pull requests
Describe the bug
Sibling values alongside a $ref are ignored by swagger editor 2.0.
If we want to add properties to $ref, It is suggested to wrap $ref into allOf.
as above,
description
will be ignored.Expected behavior
The text was updated successfully, but these errors were encountered: