Skip to content
Merged
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
13 changes: 13 additions & 0 deletions descriptions/api.github.com/api.github.com.2022-11-28.json
Original file line number Diff line number Diff line change
Expand Up @@ -36795,6 +36795,9 @@
"404": {
"$ref": "#/components/responses/not_found"
},
"422": {
"$ref": "#/components/responses/unprocessable_analysis"
},
"503": {
"$ref": "#/components/responses/service_unavailable"
}
Expand Down Expand Up @@ -301273,6 +301276,16 @@
}
}
},
"unprocessable_analysis": {
"description": "Response if analysis could not be processed",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/basic-error"
}
}
}
},
"found": {
"description": "Found"
},
Expand Down
8 changes: 8 additions & 0 deletions descriptions/api.github.com/api.github.com.2022-11-28.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26711,6 +26711,8 @@ paths:
"$ref": "#/components/responses/code_scanning_forbidden_read"
'404':
"$ref": "#/components/responses/not_found"
'422':
"$ref": "#/components/responses/unprocessable_analysis"
'503':
"$ref": "#/components/responses/service_unavailable"
x-github:
Expand Down Expand Up @@ -228986,6 +228988,12 @@ components:
application/json:
schema:
"$ref": "#/components/schemas/basic-error"
unprocessable_analysis:
description: Response if analysis could not be processed
content:
application/json:
schema:
"$ref": "#/components/schemas/basic-error"
found:
description: Found
code_scanning_conflict:
Expand Down
13 changes: 13 additions & 0 deletions descriptions/api.github.com/api.github.com.json
Original file line number Diff line number Diff line change
Expand Up @@ -36795,6 +36795,9 @@
"404": {
"$ref": "#/components/responses/not_found"
},
"422": {
"$ref": "#/components/responses/unprocessable_analysis"
},
"503": {
"$ref": "#/components/responses/service_unavailable"
}
Expand Down Expand Up @@ -301273,6 +301276,16 @@
}
}
},
"unprocessable_analysis": {
"description": "Response if analysis could not be processed",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/basic-error"
}
}
}
},
"found": {
"description": "Found"
},
Expand Down
Loading