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
A #/components/schema/pull-request references #/components/schema/team-simple in its requested_teams field.
#/components/schema/pull-request
#/components/schema/team-simple
requested_teams
"requested_teams": { "type": "array", "items": { "$ref": "#/components/schemas/team-simple" }, "nullable": true }
Team-simple lacks a "parent" definition, which can be clearly seen in an api response for PRs.
Parent exists on team, but not team-simple.
team
team-simple
Parent added to the description for team-simple, as seen in team:
"parent": { "nullable": true, "allOf": [ { "$ref": "#/components/schemas/team-simple" } ] }
curl https://api.github.com/repos/solidusio/solidus/pulls/3794
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Schema Inaccuracy
A
#/components/schema/pull-request
references#/components/schema/team-simple
in itsrequested_teams
field.Team-simple lacks a "parent" definition, which can be clearly seen in an api response for PRs.
Parent exists on
team
, but notteam-simple
.Expected
Parent added to the description for
team-simple
, as seen inteam
:Reproduction Steps
The text was updated successfully, but these errors were encountered: