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

Update OpenAPI 3.1 Descriptions #4447

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48207,7 +48207,7 @@
"properties": {
"sub_issue_id": {
"type": "integer",
"description": "The sub-issue to remove"
"description": "The id of the sub-issue to remove"
}
},
"required": [
Expand Down Expand Up @@ -48362,7 +48362,7 @@
"properties": {
"sub_issue_id": {
"type": "integer",
"description": "The sub-issue to add"
"description": "The id of the sub-issue to add. The sub-issue must belong to the same repository as the parent issue"
},
"replace_parent": {
"type": "boolean",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35032,7 +35032,7 @@ paths:
properties:
sub_issue_id:
type: integer
description: The sub-issue to remove
description: The id of the sub-issue to remove
required:
- sub_issue_id
examples:
Expand Down Expand Up @@ -35146,7 +35146,8 @@ paths:
properties:
sub_issue_id:
type: integer
description: The sub-issue to add
description: The id of the sub-issue to add. The sub-issue must
belong to the same repository as the parent issue
replace_parent:
type: boolean
description: Option that, when true, instructs the operation to
Expand Down
4 changes: 2 additions & 2 deletions descriptions-next/api.github.com/api.github.com.json
Original file line number Diff line number Diff line change
Expand Up @@ -48207,7 +48207,7 @@
"properties": {
"sub_issue_id": {
"type": "integer",
"description": "The sub-issue to remove"
"description": "The id of the sub-issue to remove"
}
},
"required": [
Expand Down Expand Up @@ -48362,7 +48362,7 @@
"properties": {
"sub_issue_id": {
"type": "integer",
"description": "The sub-issue to add"
"description": "The id of the sub-issue to add. The sub-issue must belong to the same repository as the parent issue"
},
"replace_parent": {
"type": "boolean",
Expand Down
Loading