@octokit/openapi 6.2.1 → 6.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/api.github.com.deref.json +7689 -7772
- package/generated/api.github.com.json +1344 -1295
- package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +50 -3
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +53 -3
- package/generated/ghes-3.2.deref.json +73 -7
- package/generated/ghes-3.2.json +89 -28
- package/generated/ghes-3.3-anicca-diff-to-ghes-3.4.deref.json +31 -4
- package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +96 -1
- package/generated/ghes-3.3-diff-to-ghes-3.4.json +92 -1
- package/generated/ghes-3.3.deref.json +76 -10
- package/generated/ghes-3.3.json +92 -31
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +1 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +1 -1
- package/generated/ghes-3.4.deref.json +97 -19
- package/generated/ghes-3.4.json +105 -40
- package/generated/ghes-3.5-anicca-diff-to-api.github.com.deref.json +71 -25
- package/generated/ghes-3.5-diff-to-api.github.com.deref.json +328 -574
- package/generated/ghes-3.5-diff-to-api.github.com.json +206 -272
- package/generated/ghes-3.5.deref.json +115 -52
- package/generated/ghes-3.5.json +131 -77
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +97 -4
- package/generated/github.ae-diff-to-api.github.com.deref.json +423 -1
- package/generated/github.ae-diff-to-api.github.com.json +294 -12
- package/generated/github.ae.deref.json +92 -119
- package/generated/github.ae.json +118 -95
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "6.
|
|
4
|
+
"version": "6.4.0",
|
|
5
5
|
"title": "GitHub's official OpenAPI spec + Octokit extension",
|
|
6
6
|
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
|
|
7
7
|
"license": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" },
|
|
@@ -71259,6 +71259,333 @@
|
|
|
71259
71259
|
"x-octokit": { "diff": { "api.github.com": { "type": "changed" } } }
|
|
71260
71260
|
}
|
|
71261
71261
|
},
|
|
71262
|
+
"/repos/{owner}/{repo}/autolinks": {
|
|
71263
|
+
"get": {
|
|
71264
|
+
"summary": "List all autolinks of a repository",
|
|
71265
|
+
"description": "This returns a list of autolinks configured for the given repository.\n\nInformation about autolinks are only available to repository administrators.",
|
|
71266
|
+
"tags": ["repos"],
|
|
71267
|
+
"operationId": "repos/list-autolinks",
|
|
71268
|
+
"externalDocs": {
|
|
71269
|
+
"description": "API method documentation",
|
|
71270
|
+
"url": "https://docs.github.com/enterprise-server@3.5/v3/repos#list-autolinks"
|
|
71271
|
+
},
|
|
71272
|
+
"parameters": [
|
|
71273
|
+
{
|
|
71274
|
+
"name": "owner",
|
|
71275
|
+
"description": "The account owner of the repository. The name is not case sensitive.",
|
|
71276
|
+
"in": "path",
|
|
71277
|
+
"required": true,
|
|
71278
|
+
"schema": { "type": "string" }
|
|
71279
|
+
},
|
|
71280
|
+
{
|
|
71281
|
+
"name": "repo",
|
|
71282
|
+
"description": "The name of the repository. The name is not case sensitive.",
|
|
71283
|
+
"in": "path",
|
|
71284
|
+
"required": true,
|
|
71285
|
+
"schema": { "type": "string" }
|
|
71286
|
+
},
|
|
71287
|
+
{
|
|
71288
|
+
"name": "page",
|
|
71289
|
+
"description": "Page number of the results to fetch.",
|
|
71290
|
+
"in": "query",
|
|
71291
|
+
"schema": { "type": "integer", "default": 1 }
|
|
71292
|
+
}
|
|
71293
|
+
],
|
|
71294
|
+
"responses": {
|
|
71295
|
+
"200": {
|
|
71296
|
+
"description": "Response",
|
|
71297
|
+
"content": {
|
|
71298
|
+
"application/json": {
|
|
71299
|
+
"schema": {
|
|
71300
|
+
"type": "array",
|
|
71301
|
+
"items": {
|
|
71302
|
+
"title": "Autolink reference",
|
|
71303
|
+
"description": "An autolink reference.",
|
|
71304
|
+
"type": "object",
|
|
71305
|
+
"properties": {
|
|
71306
|
+
"id": { "type": "integer", "example": 3 },
|
|
71307
|
+
"key_prefix": {
|
|
71308
|
+
"description": "The prefix of a key that is linkified.",
|
|
71309
|
+
"example": "TICKET-",
|
|
71310
|
+
"type": "string"
|
|
71311
|
+
},
|
|
71312
|
+
"url_template": {
|
|
71313
|
+
"description": "A template for the target URL that is generated if a key was found.",
|
|
71314
|
+
"example": "https://example.com/TICKET?query=<num>",
|
|
71315
|
+
"type": "string"
|
|
71316
|
+
}
|
|
71317
|
+
},
|
|
71318
|
+
"required": ["id", "key_prefix", "url_template"]
|
|
71319
|
+
}
|
|
71320
|
+
},
|
|
71321
|
+
"examples": {
|
|
71322
|
+
"default": {
|
|
71323
|
+
"value": [
|
|
71324
|
+
{
|
|
71325
|
+
"id": 1,
|
|
71326
|
+
"key_prefix": "TICKET-",
|
|
71327
|
+
"url_template": "https://example.com/TICKET?query=<num>"
|
|
71328
|
+
}
|
|
71329
|
+
]
|
|
71330
|
+
}
|
|
71331
|
+
}
|
|
71332
|
+
}
|
|
71333
|
+
}
|
|
71334
|
+
}
|
|
71335
|
+
},
|
|
71336
|
+
"x-github": {
|
|
71337
|
+
"githubCloudOnly": false,
|
|
71338
|
+
"enabledForGitHubApps": true,
|
|
71339
|
+
"category": "repos",
|
|
71340
|
+
"subcategory": "autolinks"
|
|
71341
|
+
},
|
|
71342
|
+
"x-octokit": { "diff": { "api.github.com": { "type": "changed" } } }
|
|
71343
|
+
},
|
|
71344
|
+
"post": {
|
|
71345
|
+
"summary": "Create an autolink reference for a repository",
|
|
71346
|
+
"description": "Users with admin access to the repository can create an autolink.",
|
|
71347
|
+
"tags": ["repos"],
|
|
71348
|
+
"operationId": "repos/create-autolink",
|
|
71349
|
+
"externalDocs": {
|
|
71350
|
+
"description": "API method documentation",
|
|
71351
|
+
"url": "https://docs.github.com/enterprise-server@3.5/v3/repos#create-an-autolink"
|
|
71352
|
+
},
|
|
71353
|
+
"parameters": [
|
|
71354
|
+
{
|
|
71355
|
+
"name": "owner",
|
|
71356
|
+
"description": "The account owner of the repository. The name is not case sensitive.",
|
|
71357
|
+
"in": "path",
|
|
71358
|
+
"required": true,
|
|
71359
|
+
"schema": { "type": "string" }
|
|
71360
|
+
},
|
|
71361
|
+
{
|
|
71362
|
+
"name": "repo",
|
|
71363
|
+
"description": "The name of the repository. The name is not case sensitive.",
|
|
71364
|
+
"in": "path",
|
|
71365
|
+
"required": true,
|
|
71366
|
+
"schema": { "type": "string" }
|
|
71367
|
+
}
|
|
71368
|
+
],
|
|
71369
|
+
"requestBody": {
|
|
71370
|
+
"required": true,
|
|
71371
|
+
"content": {
|
|
71372
|
+
"application/json": {
|
|
71373
|
+
"schema": {
|
|
71374
|
+
"type": "object",
|
|
71375
|
+
"properties": {
|
|
71376
|
+
"key_prefix": {
|
|
71377
|
+
"type": "string",
|
|
71378
|
+
"description": "The prefix appended by a number will generate a link any time it is found in an issue, pull request, or commit."
|
|
71379
|
+
},
|
|
71380
|
+
"url_template": {
|
|
71381
|
+
"type": "string",
|
|
71382
|
+
"description": "The URL must contain `<num>` for the reference number."
|
|
71383
|
+
}
|
|
71384
|
+
},
|
|
71385
|
+
"required": ["key_prefix", "url_template"]
|
|
71386
|
+
},
|
|
71387
|
+
"examples": {
|
|
71388
|
+
"default": {
|
|
71389
|
+
"value": {
|
|
71390
|
+
"key_prefix": "TICKET-",
|
|
71391
|
+
"url_template": "https://example.com/TICKET?query=<num>"
|
|
71392
|
+
}
|
|
71393
|
+
}
|
|
71394
|
+
}
|
|
71395
|
+
}
|
|
71396
|
+
}
|
|
71397
|
+
},
|
|
71398
|
+
"responses": {
|
|
71399
|
+
"201": {
|
|
71400
|
+
"description": "response",
|
|
71401
|
+
"content": {
|
|
71402
|
+
"application/json": {
|
|
71403
|
+
"schema": {
|
|
71404
|
+
"title": "Autolink reference",
|
|
71405
|
+
"description": "An autolink reference.",
|
|
71406
|
+
"type": "object",
|
|
71407
|
+
"properties": {
|
|
71408
|
+
"id": { "type": "integer", "example": 3 },
|
|
71409
|
+
"key_prefix": {
|
|
71410
|
+
"description": "The prefix of a key that is linkified.",
|
|
71411
|
+
"example": "TICKET-",
|
|
71412
|
+
"type": "string"
|
|
71413
|
+
},
|
|
71414
|
+
"url_template": {
|
|
71415
|
+
"description": "A template for the target URL that is generated if a key was found.",
|
|
71416
|
+
"example": "https://example.com/TICKET?query=<num>",
|
|
71417
|
+
"type": "string"
|
|
71418
|
+
}
|
|
71419
|
+
},
|
|
71420
|
+
"required": ["id", "key_prefix", "url_template"]
|
|
71421
|
+
},
|
|
71422
|
+
"examples": {
|
|
71423
|
+
"default": {
|
|
71424
|
+
"value": {
|
|
71425
|
+
"id": 1,
|
|
71426
|
+
"key_prefix": "TICKET-",
|
|
71427
|
+
"url_template": "https://example.com/TICKET?query=<num>"
|
|
71428
|
+
}
|
|
71429
|
+
}
|
|
71430
|
+
}
|
|
71431
|
+
}
|
|
71432
|
+
},
|
|
71433
|
+
"headers": {
|
|
71434
|
+
"Location": {
|
|
71435
|
+
"example": "https://api.github.com/repos/octocat/Hello-World/autolinks/1",
|
|
71436
|
+
"schema": { "type": "string" }
|
|
71437
|
+
}
|
|
71438
|
+
}
|
|
71439
|
+
},
|
|
71440
|
+
"422": {
|
|
71441
|
+
"description": "Validation failed",
|
|
71442
|
+
"content": {
|
|
71443
|
+
"application/json": {
|
|
71444
|
+
"schema": {
|
|
71445
|
+
"title": "Validation Error",
|
|
71446
|
+
"description": "Validation Error",
|
|
71447
|
+
"type": "object",
|
|
71448
|
+
"required": ["message", "documentation_url"],
|
|
71449
|
+
"properties": {
|
|
71450
|
+
"message": { "type": "string" },
|
|
71451
|
+
"documentation_url": { "type": "string" },
|
|
71452
|
+
"errors": {
|
|
71453
|
+
"type": "array",
|
|
71454
|
+
"items": {
|
|
71455
|
+
"type": "object",
|
|
71456
|
+
"required": ["code"],
|
|
71457
|
+
"properties": {
|
|
71458
|
+
"resource": { "type": "string" },
|
|
71459
|
+
"field": { "type": "string" },
|
|
71460
|
+
"message": { "type": "string" },
|
|
71461
|
+
"code": { "type": "string" },
|
|
71462
|
+
"index": { "type": "integer" },
|
|
71463
|
+
"value": {
|
|
71464
|
+
"oneOf": [
|
|
71465
|
+
{ "type": "string", "nullable": true },
|
|
71466
|
+
{ "type": "integer", "nullable": true },
|
|
71467
|
+
{
|
|
71468
|
+
"type": "array",
|
|
71469
|
+
"nullable": true,
|
|
71470
|
+
"items": { "type": "string" }
|
|
71471
|
+
}
|
|
71472
|
+
]
|
|
71473
|
+
}
|
|
71474
|
+
}
|
|
71475
|
+
}
|
|
71476
|
+
}
|
|
71477
|
+
}
|
|
71478
|
+
}
|
|
71479
|
+
}
|
|
71480
|
+
}
|
|
71481
|
+
}
|
|
71482
|
+
},
|
|
71483
|
+
"x-github": {
|
|
71484
|
+
"githubCloudOnly": false,
|
|
71485
|
+
"enabledForGitHubApps": true,
|
|
71486
|
+
"category": "repos",
|
|
71487
|
+
"subcategory": "autolinks"
|
|
71488
|
+
},
|
|
71489
|
+
"x-octokit": { "diff": { "api.github.com": { "type": "changed" } } }
|
|
71490
|
+
}
|
|
71491
|
+
},
|
|
71492
|
+
"/repos/{owner}/{repo}/autolinks/{autolink_id}": {
|
|
71493
|
+
"get": {
|
|
71494
|
+
"summary": "Get an autolink reference of a repository",
|
|
71495
|
+
"description": "This returns a single autolink reference by ID that was configured for the given repository.\n\nInformation about autolinks are only available to repository administrators.",
|
|
71496
|
+
"tags": ["repos"],
|
|
71497
|
+
"operationId": "repos/get-autolink",
|
|
71498
|
+
"externalDocs": {
|
|
71499
|
+
"description": "API method documentation",
|
|
71500
|
+
"url": "https://docs.github.com/enterprise-server@3.5/v3/repos#get-autolink"
|
|
71501
|
+
},
|
|
71502
|
+
"parameters": [
|
|
71503
|
+
{
|
|
71504
|
+
"name": "owner",
|
|
71505
|
+
"description": "The account owner of the repository. The name is not case sensitive.",
|
|
71506
|
+
"in": "path",
|
|
71507
|
+
"required": true,
|
|
71508
|
+
"schema": { "type": "string" }
|
|
71509
|
+
},
|
|
71510
|
+
{
|
|
71511
|
+
"name": "repo",
|
|
71512
|
+
"description": "The name of the repository. The name is not case sensitive.",
|
|
71513
|
+
"in": "path",
|
|
71514
|
+
"required": true,
|
|
71515
|
+
"schema": { "type": "string" }
|
|
71516
|
+
},
|
|
71517
|
+
{
|
|
71518
|
+
"name": "autolink_id",
|
|
71519
|
+
"description": "The unique identifier of the autolink.",
|
|
71520
|
+
"in": "path",
|
|
71521
|
+
"required": true,
|
|
71522
|
+
"schema": { "type": "integer" }
|
|
71523
|
+
}
|
|
71524
|
+
],
|
|
71525
|
+
"responses": {
|
|
71526
|
+
"200": {
|
|
71527
|
+
"description": "Response",
|
|
71528
|
+
"content": {
|
|
71529
|
+
"application/json": {
|
|
71530
|
+
"schema": {
|
|
71531
|
+
"title": "Autolink reference",
|
|
71532
|
+
"description": "An autolink reference.",
|
|
71533
|
+
"type": "object",
|
|
71534
|
+
"properties": {
|
|
71535
|
+
"id": { "type": "integer", "example": 3 },
|
|
71536
|
+
"key_prefix": {
|
|
71537
|
+
"description": "The prefix of a key that is linkified.",
|
|
71538
|
+
"example": "TICKET-",
|
|
71539
|
+
"type": "string"
|
|
71540
|
+
},
|
|
71541
|
+
"url_template": {
|
|
71542
|
+
"description": "A template for the target URL that is generated if a key was found.",
|
|
71543
|
+
"example": "https://example.com/TICKET?query=<num>",
|
|
71544
|
+
"type": "string"
|
|
71545
|
+
}
|
|
71546
|
+
},
|
|
71547
|
+
"required": ["id", "key_prefix", "url_template"]
|
|
71548
|
+
},
|
|
71549
|
+
"examples": {
|
|
71550
|
+
"default": {
|
|
71551
|
+
"value": {
|
|
71552
|
+
"id": 1,
|
|
71553
|
+
"key_prefix": "TICKET-",
|
|
71554
|
+
"url_template": "https://example.com/TICKET?query=<num>"
|
|
71555
|
+
}
|
|
71556
|
+
}
|
|
71557
|
+
}
|
|
71558
|
+
}
|
|
71559
|
+
}
|
|
71560
|
+
},
|
|
71561
|
+
"404": {
|
|
71562
|
+
"description": "Resource not found",
|
|
71563
|
+
"content": {
|
|
71564
|
+
"application/json": {
|
|
71565
|
+
"schema": {
|
|
71566
|
+
"title": "Basic Error",
|
|
71567
|
+
"description": "Basic Error",
|
|
71568
|
+
"type": "object",
|
|
71569
|
+
"properties": {
|
|
71570
|
+
"message": { "type": "string" },
|
|
71571
|
+
"documentation_url": { "type": "string" },
|
|
71572
|
+
"url": { "type": "string" },
|
|
71573
|
+
"status": { "type": "string" }
|
|
71574
|
+
}
|
|
71575
|
+
}
|
|
71576
|
+
}
|
|
71577
|
+
}
|
|
71578
|
+
}
|
|
71579
|
+
},
|
|
71580
|
+
"x-github": {
|
|
71581
|
+
"githubCloudOnly": false,
|
|
71582
|
+
"enabledForGitHubApps": true,
|
|
71583
|
+
"category": "repos",
|
|
71584
|
+
"subcategory": "autolinks"
|
|
71585
|
+
},
|
|
71586
|
+
"x-octokit": { "diff": { "api.github.com": { "type": "changed" } } }
|
|
71587
|
+
}
|
|
71588
|
+
},
|
|
71262
71589
|
"/repos/{owner}/{repo}/check-suites": {
|
|
71263
71590
|
"post": {
|
|
71264
71591
|
"summary": "Create a check suite",
|
|
@@ -78857,579 +79184,6 @@
|
|
|
78857
79184
|
"x-octokit": { "diff": { "api.github.com": { "type": "changed" } } }
|
|
78858
79185
|
}
|
|
78859
79186
|
},
|
|
78860
|
-
"/repos/{owner}/{repo}/code-scanning/alerts": {
|
|
78861
|
-
"get": {
|
|
78862
|
-
"summary": "List code scanning alerts for a repository",
|
|
78863
|
-
"description": "Lists all open code scanning alerts for the default branch (usually `main`\nor `master`). You must use an access token with the `security_events` scope to use\nthis endpoint with private repos, the `public_repo` scope also grants permission to read\nsecurity events on public repos only. GitHub Apps must have the `security_events` read\npermission to use this endpoint.\n\nThe response includes a `most_recent_instance` object.\nThis provides details of the most recent instance of this alert\nfor the default branch or for the specified Git reference\n(if you used `ref` in the request).",
|
|
78864
|
-
"tags": ["code-scanning"],
|
|
78865
|
-
"operationId": "code-scanning/list-alerts-for-repo",
|
|
78866
|
-
"externalDocs": {
|
|
78867
|
-
"description": "API method documentation",
|
|
78868
|
-
"url": "https://docs.github.com/enterprise-server@3.5/rest/reference/code-scanning#list-code-scanning-alerts-for-a-repository"
|
|
78869
|
-
},
|
|
78870
|
-
"parameters": [
|
|
78871
|
-
{
|
|
78872
|
-
"name": "owner",
|
|
78873
|
-
"description": "The account owner of the repository. The name is not case sensitive.",
|
|
78874
|
-
"in": "path",
|
|
78875
|
-
"required": true,
|
|
78876
|
-
"schema": { "type": "string" }
|
|
78877
|
-
},
|
|
78878
|
-
{
|
|
78879
|
-
"name": "repo",
|
|
78880
|
-
"description": "The name of the repository. The name is not case sensitive.",
|
|
78881
|
-
"in": "path",
|
|
78882
|
-
"required": true,
|
|
78883
|
-
"schema": { "type": "string" }
|
|
78884
|
-
},
|
|
78885
|
-
{
|
|
78886
|
-
"name": "tool_name",
|
|
78887
|
-
"description": "The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both.",
|
|
78888
|
-
"in": "query",
|
|
78889
|
-
"required": false,
|
|
78890
|
-
"schema": {
|
|
78891
|
-
"type": "string",
|
|
78892
|
-
"description": "The name of the tool used to generate the code scanning analysis."
|
|
78893
|
-
}
|
|
78894
|
-
},
|
|
78895
|
-
{
|
|
78896
|
-
"name": "tool_guid",
|
|
78897
|
-
"description": "The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in their analysis data. You can specify the tool by using either `tool_guid` or `tool_name`, but not both.",
|
|
78898
|
-
"in": "query",
|
|
78899
|
-
"required": false,
|
|
78900
|
-
"schema": {
|
|
78901
|
-
"nullable": true,
|
|
78902
|
-
"type": "string",
|
|
78903
|
-
"description": "The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data."
|
|
78904
|
-
}
|
|
78905
|
-
},
|
|
78906
|
-
{
|
|
78907
|
-
"name": "page",
|
|
78908
|
-
"description": "Page number of the results to fetch.",
|
|
78909
|
-
"in": "query",
|
|
78910
|
-
"schema": { "type": "integer", "default": 1 }
|
|
78911
|
-
},
|
|
78912
|
-
{
|
|
78913
|
-
"name": "per_page",
|
|
78914
|
-
"description": "The number of results per page (max 100).",
|
|
78915
|
-
"in": "query",
|
|
78916
|
-
"schema": { "type": "integer", "default": 30 }
|
|
78917
|
-
},
|
|
78918
|
-
{
|
|
78919
|
-
"name": "ref",
|
|
78920
|
-
"description": "The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/<branch name>` or simply `<branch name>`. To reference a pull request use `refs/pull/<number>/merge`.",
|
|
78921
|
-
"in": "query",
|
|
78922
|
-
"required": false,
|
|
78923
|
-
"schema": {
|
|
78924
|
-
"type": "string",
|
|
78925
|
-
"description": "The full Git reference, formatted as `refs/heads/<branch name>`,\n`refs/pull/<number>/merge`, or `refs/pull/<number>/head`."
|
|
78926
|
-
}
|
|
78927
|
-
},
|
|
78928
|
-
{
|
|
78929
|
-
"name": "direction",
|
|
78930
|
-
"description": "The direction to sort the results by.",
|
|
78931
|
-
"in": "query",
|
|
78932
|
-
"required": false,
|
|
78933
|
-
"schema": {
|
|
78934
|
-
"type": "string",
|
|
78935
|
-
"enum": ["asc", "desc"],
|
|
78936
|
-
"default": "desc"
|
|
78937
|
-
}
|
|
78938
|
-
},
|
|
78939
|
-
{
|
|
78940
|
-
"name": "sort",
|
|
78941
|
-
"description": "The property by which to sort the results.",
|
|
78942
|
-
"in": "query",
|
|
78943
|
-
"required": false,
|
|
78944
|
-
"schema": {
|
|
78945
|
-
"type": "string",
|
|
78946
|
-
"enum": ["created", "updated", "number"],
|
|
78947
|
-
"default": "number"
|
|
78948
|
-
}
|
|
78949
|
-
},
|
|
78950
|
-
{
|
|
78951
|
-
"name": "state",
|
|
78952
|
-
"description": "Set to `open`, `closed, `fixed`, or `dismissed` to list code scanning alerts in a specific state.",
|
|
78953
|
-
"in": "query",
|
|
78954
|
-
"required": false,
|
|
78955
|
-
"schema": {
|
|
78956
|
-
"type": "string",
|
|
78957
|
-
"description": "State of a code scanning alert.",
|
|
78958
|
-
"enum": ["open", "closed", "dismissed", "fixed"]
|
|
78959
|
-
}
|
|
78960
|
-
}
|
|
78961
|
-
],
|
|
78962
|
-
"responses": {
|
|
78963
|
-
"200": {
|
|
78964
|
-
"description": "Response",
|
|
78965
|
-
"content": {
|
|
78966
|
-
"application/json": {
|
|
78967
|
-
"schema": {
|
|
78968
|
-
"type": "array",
|
|
78969
|
-
"items": {
|
|
78970
|
-
"type": "object",
|
|
78971
|
-
"properties": {
|
|
78972
|
-
"number": {
|
|
78973
|
-
"type": "integer",
|
|
78974
|
-
"description": "The security alert number.",
|
|
78975
|
-
"readOnly": true
|
|
78976
|
-
},
|
|
78977
|
-
"created_at": {
|
|
78978
|
-
"type": "string",
|
|
78979
|
-
"description": "The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.",
|
|
78980
|
-
"format": "date-time",
|
|
78981
|
-
"readOnly": true
|
|
78982
|
-
},
|
|
78983
|
-
"updated_at": {
|
|
78984
|
-
"type": "string",
|
|
78985
|
-
"description": "The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.",
|
|
78986
|
-
"format": "date-time",
|
|
78987
|
-
"readOnly": true
|
|
78988
|
-
},
|
|
78989
|
-
"url": {
|
|
78990
|
-
"type": "string",
|
|
78991
|
-
"description": "The REST API URL of the alert resource.",
|
|
78992
|
-
"format": "uri",
|
|
78993
|
-
"readOnly": true
|
|
78994
|
-
},
|
|
78995
|
-
"html_url": {
|
|
78996
|
-
"type": "string",
|
|
78997
|
-
"description": "The GitHub URL of the alert resource.",
|
|
78998
|
-
"format": "uri",
|
|
78999
|
-
"readOnly": true
|
|
79000
|
-
},
|
|
79001
|
-
"instances_url": {
|
|
79002
|
-
"type": "string",
|
|
79003
|
-
"description": "The REST API URL for fetching the list of instances for an alert.",
|
|
79004
|
-
"format": "uri",
|
|
79005
|
-
"readOnly": true
|
|
79006
|
-
},
|
|
79007
|
-
"state": {
|
|
79008
|
-
"type": "string",
|
|
79009
|
-
"description": "State of a code scanning alert.",
|
|
79010
|
-
"enum": ["open", "closed", "dismissed", "fixed"]
|
|
79011
|
-
},
|
|
79012
|
-
"fixed_at": {
|
|
79013
|
-
"type": "string",
|
|
79014
|
-
"description": "The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.",
|
|
79015
|
-
"format": "date-time",
|
|
79016
|
-
"readOnly": true,
|
|
79017
|
-
"nullable": true
|
|
79018
|
-
},
|
|
79019
|
-
"dismissed_by": {
|
|
79020
|
-
"title": "Simple User",
|
|
79021
|
-
"description": "Simple User",
|
|
79022
|
-
"type": "object",
|
|
79023
|
-
"properties": {
|
|
79024
|
-
"name": { "nullable": true, "type": "string" },
|
|
79025
|
-
"email": { "nullable": true, "type": "string" },
|
|
79026
|
-
"login": { "type": "string", "example": "octocat" },
|
|
79027
|
-
"id": { "type": "integer", "example": 1 },
|
|
79028
|
-
"node_id": {
|
|
79029
|
-
"type": "string",
|
|
79030
|
-
"example": "MDQ6VXNlcjE="
|
|
79031
|
-
},
|
|
79032
|
-
"avatar_url": {
|
|
79033
|
-
"type": "string",
|
|
79034
|
-
"format": "uri",
|
|
79035
|
-
"example": "https://github.com/images/error/octocat_happy.gif"
|
|
79036
|
-
},
|
|
79037
|
-
"gravatar_id": {
|
|
79038
|
-
"type": "string",
|
|
79039
|
-
"example": "41d064eb2195891e12d0413f63227ea7",
|
|
79040
|
-
"nullable": true
|
|
79041
|
-
},
|
|
79042
|
-
"url": {
|
|
79043
|
-
"type": "string",
|
|
79044
|
-
"format": "uri",
|
|
79045
|
-
"example": "https://api.github.com/users/octocat"
|
|
79046
|
-
},
|
|
79047
|
-
"html_url": {
|
|
79048
|
-
"type": "string",
|
|
79049
|
-
"format": "uri",
|
|
79050
|
-
"example": "https://github.com/octocat"
|
|
79051
|
-
},
|
|
79052
|
-
"followers_url": {
|
|
79053
|
-
"type": "string",
|
|
79054
|
-
"format": "uri",
|
|
79055
|
-
"example": "https://api.github.com/users/octocat/followers"
|
|
79056
|
-
},
|
|
79057
|
-
"following_url": {
|
|
79058
|
-
"type": "string",
|
|
79059
|
-
"example": "https://api.github.com/users/octocat/following{/other_user}"
|
|
79060
|
-
},
|
|
79061
|
-
"gists_url": {
|
|
79062
|
-
"type": "string",
|
|
79063
|
-
"example": "https://api.github.com/users/octocat/gists{/gist_id}"
|
|
79064
|
-
},
|
|
79065
|
-
"starred_url": {
|
|
79066
|
-
"type": "string",
|
|
79067
|
-
"example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
|
|
79068
|
-
},
|
|
79069
|
-
"subscriptions_url": {
|
|
79070
|
-
"type": "string",
|
|
79071
|
-
"format": "uri",
|
|
79072
|
-
"example": "https://api.github.com/users/octocat/subscriptions"
|
|
79073
|
-
},
|
|
79074
|
-
"organizations_url": {
|
|
79075
|
-
"type": "string",
|
|
79076
|
-
"format": "uri",
|
|
79077
|
-
"example": "https://api.github.com/users/octocat/orgs"
|
|
79078
|
-
},
|
|
79079
|
-
"repos_url": {
|
|
79080
|
-
"type": "string",
|
|
79081
|
-
"format": "uri",
|
|
79082
|
-
"example": "https://api.github.com/users/octocat/repos"
|
|
79083
|
-
},
|
|
79084
|
-
"events_url": {
|
|
79085
|
-
"type": "string",
|
|
79086
|
-
"example": "https://api.github.com/users/octocat/events{/privacy}"
|
|
79087
|
-
},
|
|
79088
|
-
"received_events_url": {
|
|
79089
|
-
"type": "string",
|
|
79090
|
-
"format": "uri",
|
|
79091
|
-
"example": "https://api.github.com/users/octocat/received_events"
|
|
79092
|
-
},
|
|
79093
|
-
"type": { "type": "string", "example": "User" },
|
|
79094
|
-
"site_admin": { "type": "boolean" },
|
|
79095
|
-
"starred_at": {
|
|
79096
|
-
"type": "string",
|
|
79097
|
-
"example": "\"2020-07-09T00:17:55Z\""
|
|
79098
|
-
}
|
|
79099
|
-
},
|
|
79100
|
-
"required": [
|
|
79101
|
-
"avatar_url",
|
|
79102
|
-
"events_url",
|
|
79103
|
-
"followers_url",
|
|
79104
|
-
"following_url",
|
|
79105
|
-
"gists_url",
|
|
79106
|
-
"gravatar_id",
|
|
79107
|
-
"html_url",
|
|
79108
|
-
"id",
|
|
79109
|
-
"node_id",
|
|
79110
|
-
"login",
|
|
79111
|
-
"organizations_url",
|
|
79112
|
-
"received_events_url",
|
|
79113
|
-
"repos_url",
|
|
79114
|
-
"site_admin",
|
|
79115
|
-
"starred_url",
|
|
79116
|
-
"subscriptions_url",
|
|
79117
|
-
"type",
|
|
79118
|
-
"url"
|
|
79119
|
-
],
|
|
79120
|
-
"nullable": true
|
|
79121
|
-
},
|
|
79122
|
-
"dismissed_at": {
|
|
79123
|
-
"type": "string",
|
|
79124
|
-
"description": "The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.",
|
|
79125
|
-
"format": "date-time",
|
|
79126
|
-
"readOnly": true,
|
|
79127
|
-
"nullable": true
|
|
79128
|
-
},
|
|
79129
|
-
"dismissed_reason": {
|
|
79130
|
-
"type": "string",
|
|
79131
|
-
"description": "**Required when the state is dismissed.** The reason for dismissing or closing the alert.",
|
|
79132
|
-
"nullable": true,
|
|
79133
|
-
"enum": [
|
|
79134
|
-
null,
|
|
79135
|
-
"false positive",
|
|
79136
|
-
"won't fix",
|
|
79137
|
-
"used in tests"
|
|
79138
|
-
]
|
|
79139
|
-
},
|
|
79140
|
-
"rule": {
|
|
79141
|
-
"type": "object",
|
|
79142
|
-
"properties": {
|
|
79143
|
-
"id": {
|
|
79144
|
-
"nullable": true,
|
|
79145
|
-
"type": "string",
|
|
79146
|
-
"description": "A unique identifier for the rule used to detect the alert."
|
|
79147
|
-
},
|
|
79148
|
-
"name": {
|
|
79149
|
-
"type": "string",
|
|
79150
|
-
"description": "The name of the rule used to detect the alert."
|
|
79151
|
-
},
|
|
79152
|
-
"tags": {
|
|
79153
|
-
"nullable": true,
|
|
79154
|
-
"type": "array",
|
|
79155
|
-
"description": "A set of tags applicable for the rule.",
|
|
79156
|
-
"items": { "type": "string" }
|
|
79157
|
-
},
|
|
79158
|
-
"severity": {
|
|
79159
|
-
"nullable": true,
|
|
79160
|
-
"type": "string",
|
|
79161
|
-
"description": "The severity of the alert.",
|
|
79162
|
-
"enum": ["none", "note", "warning", "error"]
|
|
79163
|
-
},
|
|
79164
|
-
"description": {
|
|
79165
|
-
"type": "string",
|
|
79166
|
-
"description": "A short description of the rule used to detect the alert."
|
|
79167
|
-
}
|
|
79168
|
-
}
|
|
79169
|
-
},
|
|
79170
|
-
"tool": {
|
|
79171
|
-
"type": "object",
|
|
79172
|
-
"properties": {
|
|
79173
|
-
"name": {
|
|
79174
|
-
"type": "string",
|
|
79175
|
-
"description": "The name of the tool used to generate the code scanning analysis."
|
|
79176
|
-
},
|
|
79177
|
-
"version": {
|
|
79178
|
-
"nullable": true,
|
|
79179
|
-
"type": "string",
|
|
79180
|
-
"description": "The version of the tool used to generate the code scanning analysis."
|
|
79181
|
-
},
|
|
79182
|
-
"guid": {
|
|
79183
|
-
"nullable": true,
|
|
79184
|
-
"type": "string",
|
|
79185
|
-
"description": "The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data."
|
|
79186
|
-
}
|
|
79187
|
-
}
|
|
79188
|
-
},
|
|
79189
|
-
"most_recent_instance": {
|
|
79190
|
-
"type": "object",
|
|
79191
|
-
"properties": {
|
|
79192
|
-
"ref": {
|
|
79193
|
-
"type": "string",
|
|
79194
|
-
"description": "The full Git reference, formatted as `refs/heads/<branch name>`,\n`refs/pull/<number>/merge`, or `refs/pull/<number>/head`."
|
|
79195
|
-
},
|
|
79196
|
-
"analysis_key": {
|
|
79197
|
-
"type": "string",
|
|
79198
|
-
"description": "Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name."
|
|
79199
|
-
},
|
|
79200
|
-
"environment": {
|
|
79201
|
-
"type": "string",
|
|
79202
|
-
"description": "Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed."
|
|
79203
|
-
},
|
|
79204
|
-
"category": {
|
|
79205
|
-
"type": "string",
|
|
79206
|
-
"description": "Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code."
|
|
79207
|
-
},
|
|
79208
|
-
"state": {
|
|
79209
|
-
"type": "string",
|
|
79210
|
-
"description": "State of a code scanning alert.",
|
|
79211
|
-
"enum": ["open", "closed", "dismissed", "fixed"]
|
|
79212
|
-
},
|
|
79213
|
-
"commit_sha": { "type": "string" },
|
|
79214
|
-
"message": {
|
|
79215
|
-
"type": "object",
|
|
79216
|
-
"properties": { "text": { "type": "string" } }
|
|
79217
|
-
},
|
|
79218
|
-
"location": {
|
|
79219
|
-
"type": "object",
|
|
79220
|
-
"description": "Describe a region within a file for the alert.",
|
|
79221
|
-
"properties": {
|
|
79222
|
-
"path": { "type": "string" },
|
|
79223
|
-
"start_line": { "type": "integer" },
|
|
79224
|
-
"end_line": { "type": "integer" },
|
|
79225
|
-
"start_column": { "type": "integer" },
|
|
79226
|
-
"end_column": { "type": "integer" }
|
|
79227
|
-
}
|
|
79228
|
-
},
|
|
79229
|
-
"html_url": { "type": "string" },
|
|
79230
|
-
"classifications": {
|
|
79231
|
-
"type": "array",
|
|
79232
|
-
"description": "Classifications that have been applied to the file that triggered the alert.\nFor example identifying it as documentation, or a generated file.",
|
|
79233
|
-
"items": {
|
|
79234
|
-
"type": "string",
|
|
79235
|
-
"description": "A classification of the file. For example to identify it as generated.",
|
|
79236
|
-
"nullable": true,
|
|
79237
|
-
"enum": ["source", "generated", "test", "library"]
|
|
79238
|
-
}
|
|
79239
|
-
}
|
|
79240
|
-
}
|
|
79241
|
-
}
|
|
79242
|
-
},
|
|
79243
|
-
"required": [
|
|
79244
|
-
"number",
|
|
79245
|
-
"created_at",
|
|
79246
|
-
"url",
|
|
79247
|
-
"html_url",
|
|
79248
|
-
"instances_url",
|
|
79249
|
-
"state",
|
|
79250
|
-
"dismissed_by",
|
|
79251
|
-
"dismissed_at",
|
|
79252
|
-
"dismissed_reason",
|
|
79253
|
-
"rule",
|
|
79254
|
-
"tool",
|
|
79255
|
-
"most_recent_instance"
|
|
79256
|
-
]
|
|
79257
|
-
}
|
|
79258
|
-
},
|
|
79259
|
-
"examples": {
|
|
79260
|
-
"default": {
|
|
79261
|
-
"value": [
|
|
79262
|
-
{
|
|
79263
|
-
"number": 4,
|
|
79264
|
-
"created_at": "2020-02-13T12:29:18Z",
|
|
79265
|
-
"url": "https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4",
|
|
79266
|
-
"html_url": "https://github.com/octocat/hello-world/code-scanning/4",
|
|
79267
|
-
"state": "open",
|
|
79268
|
-
"fixed_at": null,
|
|
79269
|
-
"dismissed_by": null,
|
|
79270
|
-
"dismissed_at": null,
|
|
79271
|
-
"dismissed_reason": null,
|
|
79272
|
-
"rule": {
|
|
79273
|
-
"id": "js/zipslip",
|
|
79274
|
-
"severity": "error",
|
|
79275
|
-
"tags": ["security", "external/cwe/cwe-022"],
|
|
79276
|
-
"description": "Arbitrary file write during zip extraction",
|
|
79277
|
-
"name": "js/zipslip"
|
|
79278
|
-
},
|
|
79279
|
-
"tool": {
|
|
79280
|
-
"name": "CodeQL",
|
|
79281
|
-
"guid": null,
|
|
79282
|
-
"version": "2.4.0"
|
|
79283
|
-
},
|
|
79284
|
-
"most_recent_instance": {
|
|
79285
|
-
"ref": "refs/heads/main",
|
|
79286
|
-
"analysis_key": ".github/workflows/codeql-analysis.yml:CodeQL-Build",
|
|
79287
|
-
"environment": "{}",
|
|
79288
|
-
"state": "open",
|
|
79289
|
-
"commit_sha": "39406e42cb832f683daa691dd652a8dc36ee8930",
|
|
79290
|
-
"message": {
|
|
79291
|
-
"text": "This path depends on a user-provided value."
|
|
79292
|
-
},
|
|
79293
|
-
"location": {
|
|
79294
|
-
"path": "spec-main/api-session-spec.ts",
|
|
79295
|
-
"start_line": 917,
|
|
79296
|
-
"end_line": 917,
|
|
79297
|
-
"start_column": 7,
|
|
79298
|
-
"end_column": 18
|
|
79299
|
-
},
|
|
79300
|
-
"classifications": ["test"]
|
|
79301
|
-
},
|
|
79302
|
-
"instances_url": "https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4/instances"
|
|
79303
|
-
},
|
|
79304
|
-
{
|
|
79305
|
-
"number": 3,
|
|
79306
|
-
"created_at": "2020-02-13T12:29:18Z",
|
|
79307
|
-
"url": "https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3",
|
|
79308
|
-
"html_url": "https://github.com/octocat/hello-world/code-scanning/3",
|
|
79309
|
-
"state": "dismissed",
|
|
79310
|
-
"fixed_at": null,
|
|
79311
|
-
"dismissed_by": {
|
|
79312
|
-
"login": "octocat",
|
|
79313
|
-
"id": 1,
|
|
79314
|
-
"node_id": "MDQ6VXNlcjE=",
|
|
79315
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
|
79316
|
-
"gravatar_id": "",
|
|
79317
|
-
"url": "https://api.github.com/users/octocat",
|
|
79318
|
-
"html_url": "https://github.com/octocat",
|
|
79319
|
-
"followers_url": "https://api.github.com/users/octocat/followers",
|
|
79320
|
-
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
|
79321
|
-
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
|
79322
|
-
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
|
79323
|
-
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
|
79324
|
-
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
|
79325
|
-
"repos_url": "https://api.github.com/users/octocat/repos",
|
|
79326
|
-
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
|
79327
|
-
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
|
79328
|
-
"type": "User",
|
|
79329
|
-
"site_admin": false
|
|
79330
|
-
},
|
|
79331
|
-
"dismissed_at": "2020-02-14T12:29:18Z",
|
|
79332
|
-
"dismissed_reason": "false positive",
|
|
79333
|
-
"rule": {
|
|
79334
|
-
"id": "js/zipslip",
|
|
79335
|
-
"severity": "error",
|
|
79336
|
-
"tags": ["security", "external/cwe/cwe-022"],
|
|
79337
|
-
"description": "Arbitrary file write during zip extraction",
|
|
79338
|
-
"name": "js/zipslip"
|
|
79339
|
-
},
|
|
79340
|
-
"tool": {
|
|
79341
|
-
"name": "CodeQL",
|
|
79342
|
-
"guid": null,
|
|
79343
|
-
"version": "2.4.0"
|
|
79344
|
-
},
|
|
79345
|
-
"most_recent_instance": {
|
|
79346
|
-
"ref": "refs/heads/main",
|
|
79347
|
-
"analysis_key": ".github/workflows/codeql-analysis.yml:CodeQL-Build",
|
|
79348
|
-
"environment": "{}",
|
|
79349
|
-
"state": "open",
|
|
79350
|
-
"commit_sha": "39406e42cb832f683daa691dd652a8dc36ee8930",
|
|
79351
|
-
"message": {
|
|
79352
|
-
"text": "This path depends on a user-provided value."
|
|
79353
|
-
},
|
|
79354
|
-
"location": {
|
|
79355
|
-
"path": "lib/ab12-gen.js",
|
|
79356
|
-
"start_line": 917,
|
|
79357
|
-
"end_line": 917,
|
|
79358
|
-
"start_column": 7,
|
|
79359
|
-
"end_column": 18
|
|
79360
|
-
},
|
|
79361
|
-
"classifications": []
|
|
79362
|
-
},
|
|
79363
|
-
"instances_url": "https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances"
|
|
79364
|
-
}
|
|
79365
|
-
]
|
|
79366
|
-
}
|
|
79367
|
-
}
|
|
79368
|
-
}
|
|
79369
|
-
}
|
|
79370
|
-
},
|
|
79371
|
-
"304": { "description": "Not modified" },
|
|
79372
|
-
"403": {
|
|
79373
|
-
"description": "Response if GitHub Advanced Security is not enabled for this repository",
|
|
79374
|
-
"content": {
|
|
79375
|
-
"application/json": {
|
|
79376
|
-
"schema": {
|
|
79377
|
-
"title": "Basic Error",
|
|
79378
|
-
"description": "Basic Error",
|
|
79379
|
-
"type": "object",
|
|
79380
|
-
"properties": {
|
|
79381
|
-
"message": { "type": "string" },
|
|
79382
|
-
"documentation_url": { "type": "string" },
|
|
79383
|
-
"url": { "type": "string" },
|
|
79384
|
-
"status": { "type": "string" }
|
|
79385
|
-
}
|
|
79386
|
-
}
|
|
79387
|
-
}
|
|
79388
|
-
}
|
|
79389
|
-
},
|
|
79390
|
-
"404": {
|
|
79391
|
-
"description": "Resource not found",
|
|
79392
|
-
"content": {
|
|
79393
|
-
"application/json": {
|
|
79394
|
-
"schema": {
|
|
79395
|
-
"title": "Basic Error",
|
|
79396
|
-
"description": "Basic Error",
|
|
79397
|
-
"type": "object",
|
|
79398
|
-
"properties": {
|
|
79399
|
-
"message": { "type": "string" },
|
|
79400
|
-
"documentation_url": { "type": "string" },
|
|
79401
|
-
"url": { "type": "string" },
|
|
79402
|
-
"status": { "type": "string" }
|
|
79403
|
-
}
|
|
79404
|
-
}
|
|
79405
|
-
}
|
|
79406
|
-
}
|
|
79407
|
-
},
|
|
79408
|
-
"503": {
|
|
79409
|
-
"description": "Service unavailable",
|
|
79410
|
-
"content": {
|
|
79411
|
-
"application/json": {
|
|
79412
|
-
"schema": {
|
|
79413
|
-
"type": "object",
|
|
79414
|
-
"properties": {
|
|
79415
|
-
"code": { "type": "string" },
|
|
79416
|
-
"message": { "type": "string" },
|
|
79417
|
-
"documentation_url": { "type": "string" }
|
|
79418
|
-
}
|
|
79419
|
-
}
|
|
79420
|
-
}
|
|
79421
|
-
}
|
|
79422
|
-
}
|
|
79423
|
-
},
|
|
79424
|
-
"x-github": {
|
|
79425
|
-
"githubCloudOnly": false,
|
|
79426
|
-
"enabledForGitHubApps": true,
|
|
79427
|
-
"category": "code-scanning",
|
|
79428
|
-
"subcategory": null
|
|
79429
|
-
},
|
|
79430
|
-
"x-octokit": { "diff": { "api.github.com": { "type": "changed" } } }
|
|
79431
|
-
}
|
|
79432
|
-
},
|
|
79433
79187
|
"/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}": {
|
|
79434
79188
|
"get": {
|
|
79435
79189
|
"summary": "Get a code scanning alert",
|