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
Copy file name to clipboardExpand all lines: openapi.json
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7241,7 +7241,7 @@
7241
7241
]
7242
7242
}
7243
7243
],
7244
-
"description": "Batch retrieval of package metadata and alerts by PURL strings. Compatible witch CycloneDX reports.\n\nPackage URLs (PURLs) are an ecosystem agnostic way to identify packages.\nCycloneDX SBOMs use the purl format to identify components.\nThis endpoint supports fetching metadata and alerts for multiple packages at once by passing an array of purl strings, or by passing an entire CycloneDX report.\n\nMore information on purl and CycloneDX:\n\n- [`purl` Spec](https://github.com/package-url/purl-spec)\n- [CycloneDX Spec](https://cyclonedx.org/specification/overview/#components)\n\n## Examples:\n\n### Looking up an npm package:\n\n```json\n{\n \"components\": [\n {\n \"purl\": \"pkg:npm/[email protected]\"\n }\n ]\n}\n```\n\n### Looking up an PyPi package:\n\n```json\n{\n \"components\": [\n {\n \"purl\": \"pkg:pypi/[email protected]\"\n }\n ]\n}\n```\n\n### Looking up a Maven package:\n\n```json\n{\n \"components\": [\n {\n \"purl\": \"pkg:maven/log4j/[email protected]\"\n }\n ]\n}\n```\n\n### Batch lookup\n\n```json\n{\n \"components\": [\n {\n \"purl\": \"pkg:npm/[email protected]\"\n },\n {\n \"purl\": \"pkg:pypi/[email protected]\"\n },\n {\n \"purl\": \"pkg:maven/log4j/[email protected]\"\n }\n ]\n}\n```\n\nThis endpoint consumes 100 units of your quota.\n\nThis endpoint requires the following org token scopes:\n- packages:list",
7244
+
"description": "Batch retrieval of package metadata and alerts by PURL strings. Compatible witch CycloneDX reports.\n\nPackage URLs (PURLs) are an ecosystem agnostic way to identify packages.\nCycloneDX SBOMs use the purl format to identify components.\nThis endpoint supports fetching metadata and alerts for multiple packages at once by passing an array of purl strings, or by passing an entire CycloneDX report.\n\nMore information on purl and CycloneDX:\n\n- [`purl` Spec](https://github.com/package-url/purl-spec)\n- [CycloneDX Spec](https://cyclonedx.org/specification/overview/#components)\n\nThis endpoint returns the latest available alert data for artifacts in the batch (stale while revalidate).\nActively running analysis will be returned when available on subsequent runs.\n\n## Examples:\n\n### Looking up an npm package:\n\n```json\n{\n \"components\": [\n {\n \"purl\": \"pkg:npm/[email protected]\"\n }\n ]\n}\n```\n\n### Looking up an PyPi package:\n\n```json\n{\n \"components\": [\n {\n \"purl\": \"pkg:pypi/[email protected]\"\n }\n ]\n}\n```\n\n### Looking up a Maven package:\n\n```json\n{\n \"components\": [\n {\n \"purl\": \"pkg:maven/log4j/[email protected]\"\n }\n ]\n}\n```\n\n### Batch lookup\n\n```json\n{\n \"components\": [\n {\n \"purl\": \"pkg:npm/[email protected]\"\n },\n {\n \"purl\": \"pkg:pypi/[email protected]\"\n },\n {\n \"purl\": \"pkg:maven/log4j/[email protected]\"\n }\n ]\n}\n```\n\nThis endpoint consumes 100 units of your quota.\n\nThis endpoint requires the following org token scopes:\n- packages:list",
7245
7245
"responses": {
7246
7246
"200": {
7247
7247
"content": {
@@ -8172,7 +8172,7 @@
8172
8172
]
8173
8173
}
8174
8174
],
8175
-
"description": "Stream all SBOM artifacts for a full scan.\n\nThis endpoint consumes 1 unit of your quota.\n\nThis endpoint requires the following org token scopes:\n- full-scans:list",
8175
+
"description": "Stream all SBOM artifacts for a full scan.\n\nThis endpoint returns the latest, available alert data for artifacts in the full scan (stale while revalidate).\nActively running analysis will be returned when available on subsequent runs.\n\nThis endpoint consumes 1 unit of your quota.\n\nThis endpoint requires the following org token scopes:\n- full-scans:list",
8176
8176
"responses": {
8177
8177
"200": {
8178
8178
"content": {
@@ -10446,14 +10446,15 @@
10446
10446
}
10447
10447
}
10448
10448
},
10449
+
"description": "Array of organization selector objects (with `organization` field holding the organization ID) to get settings for",
10449
10450
"required": false
10450
10451
},
10451
10452
"security": [
10452
10453
{
10453
10454
"basicAuth": []
10454
10455
}
10455
10456
],
10456
-
"description": "Get your current settings the requested organizations and default settings to allow deferrals.\n\nThis endpoint consumes 1 unit of your quota.\n\nThis endpoint requires the following org token scopes:\n- Any",
10457
+
"description": "Get current settings for the requested organizations and default settings to allow deferrals.\n\nThis endpoint consumes 1 unit of your quota.\n\nThis endpoint requires the following org token scopes:\n- Any",
10457
10458
"responses": {
10458
10459
"200": {
10459
10460
"content": {
@@ -10556,7 +10557,7 @@
10556
10557
}
10557
10558
}
10558
10559
},
10559
-
"description": "Organization settings"
10560
+
"description": "Organization settings. Returned object contains default issue rules and an array of entries, with each entry representing an organization's settings."
/** @description Organization settings. Returned object contains default issue rules and an array of entries, with each entry representing an organization's settings. */
0 commit comments