-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
refactor: update schema to resolve reference property issue #275
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Welcome to AsyncAPI. Thanks a lot for creating your first pull request. Please check out our contributors guide useful for opening a pull request.
Keep in mind there are also other channels you can use to interact with AsyncAPI community. For more details check out this issue.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jonaslagoni I'm wondering if it makes sense to backport to previous versions 🤔 it is rather refactor work that an actuall fix
definitions/2.5.0/parameters.json
Outdated
"oneOf": [ | ||
{ | ||
"$ref": "http://asyncapi.com/definitions/2.5.0/parameter.json" | ||
} | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"oneOf": [ | |
{ | |
"$ref": "http://asyncapi.com/definitions/2.5.0/parameter.json" | |
} | |
] | |
"oneOf": [ | |
{ | |
"$ref": "http://asyncapi.com/definitions/2.5.0/Reference.json" | |
}, | |
{ | |
"$ref": "http://asyncapi.com/definitions/2.5.0/parameter.json" | |
} | |
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made the changes with the commit #cdee75e. Kindly review.
@mastdev yo, wanted to check if you saw my review |
Sorry, been inactive for a while. Thanks, @derberg for the review. Will incorporate the changes in the following commit. |
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
@jonaslagoni since you reported the issue, I want to make sure you are happy with the outcome
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
/rtm |
@mastdev thanks a lot for your contribution there are few more similar issues https://github.com/asyncapi/spec-json-schemas/issues?q=is%3Aissue+is%3Aopen+label%3AHacktoberfest if you would like to help more |
Thanks, @derberg for the opportunity. I am new to Open Source and it feels great to have one of my initial PRs merged. 😃 |
@mastdev congrats 😄 and thanks for helping us here 🙇🏼 |
🎉 This PR is included in version 4.0.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Description
paramter.json
andparameters.json
Related issue(s)
Resolves #165