You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"summary": "List CodeQL databases for a repository",
27455
+
"description": "Lists the CodeQL databases that are available in a repository.\n\nFor private repositories, you must use an access token with the `security_events` scope.\nFor public repositories, you can use tokens with the `security_events` or `public_repo` scope.\nGitHub Apps must have the `contents` read permission to use this endpoint.",
"summary": "Get a CodeQL database for a repository",
27515
+
"description": "Gets a CodeQL database for a language in a repository.\n\nBy default this endpoint returns JSON metadata about the CodeQL database. To\ndownload the CodeQL database binary content, set the `Accept` header of the request\nto [`application/zip`](https://docs.github.com/rest/overview/media-types), and make sure\nyour HTTP client is configured to follow redirects or use the `Location` header\nto make a second request to get the redirect URL.\n\nFor private repositories, you must use an access token with the `security_events` scope.\nFor public repositories, you can use tokens with the `security_events` or `public_repo` scope.\nGitHub Apps must have the `contents` read permission to use this endpoint.",
"description": "The language of the CodeQL database."
73171
+
},
73172
+
"uploader": {
73173
+
"$ref": "#/components/schemas/simple-user"
73174
+
},
73175
+
"content_type": {
73176
+
"type": "string",
73177
+
"description": "The MIME type of the CodeQL database file."
73178
+
},
73179
+
"size": {
73180
+
"type": "integer",
73181
+
"description": "The size of the CodeQL database file in bytes."
73182
+
},
73183
+
"created_at": {
73184
+
"type": "string",
73185
+
"format": "date-time",
73186
+
"description": "The date and time at which the CodeQL database was created, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ."
73187
+
},
73188
+
"updated_at": {
73189
+
"type": "string",
73190
+
"format": "date-time",
73191
+
"description": "The date and time at which the CodeQL database was last updated, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ."
73192
+
},
73193
+
"url": {
73194
+
"type": "string",
73195
+
"format": "uri",
73196
+
"description": "The URL at which to download the CodeQL database. The `Accept` header must be set to the value of the `content_type` property."
73197
+
}
73198
+
},
73199
+
"required": [
73200
+
"id",
73201
+
"name",
73202
+
"language",
73203
+
"uploader",
73204
+
"content_type",
73205
+
"size",
73206
+
"created_at",
73207
+
"updated_at",
73208
+
"url"
73209
+
]
73210
+
},
73026
73211
"code-scanning-analysis-sarif-file": {
73027
73212
"description": "A Base64 string representing the SARIF file to upload. You must first compress your SARIF file using [`gzip`](http://www.gnu.org/software/gzip/manual/gzip.html) and then translate the contents of the file into a Base64 encoding string. For more information, see \"[SARIF support for code scanning](https://docs.github.com/code-security/secure-coding/sarif-support-for-code-scanning).\"",
0 commit comments