{"info":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","description":"<html><head></head><body><p>This is the official public/external documentation for the Manifest Cyber v1 API. This API is used by Manifest's frontend apps, internal ETL &amp; processors, and Manifest customers via direct access. All routes, unless otherwise noted, require authorization via <strong>Bearer token</strong> (Manifest customers may generate an API key on their organization profile at app.manifestcyber.com) <strong>or user session</strong>. Some routes (where noted as \"App Only\") are currently only accessible via user session (e.g. logged in on app).</p>\n<p>This version of our API is located at <a href=\"https://api.manifestcyber.com/v1\">https://api.manifestcyber.com/v1</a>.</p>\n<p>Note:<br>- All requests, unless otherwise noted, should include an <code>Content-Type: application/json</code> header.</p>\n<p>This documentation is a continuous work-in-progress. Some other links we find useful for quick-access:</p>\n<hr>\n<p>We have a Github Action and Circle CI Orb that include examples for generating an SBOM and transmitting it to Manifest as part of your automated CICD.</p>\n<ul>\n<li><p>Github Action: <a href=\"https://github.com/manifest-cyber/manifest-github-action\">https://github.com/manifest-cyber/manifest-github-action</a></p>\n</li>\n<li><p>CircleCI Orb: <a href=\"https://github.com/manifest-cyber/manifest-circle-orb\">https://github.com/manifest-cyber/manifest-circle-orb</a></p>\n</li>\n</ul>\n<p>We also have a CLI that includes the ability to locally generate and merge SBOMs, as well as transmit your SBOMs directly into Manifest: <a href=\"https://github.com/manifest-cyber/cli\">https://github.com/manifest-cyber/cli</a></p>\n<p>Lastly, we have various other resources available (including SBOM generation and transmission examples across multiple ecosystems &amp; langs) publicly on our Github: <a href=\"https://github.com/manifest-cyber/cli\">https://github.com/manifest-cyber/cli</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"23798297","collectionId":"19174cfa-736a-49ec-9284-d8477d86b071","publishedId":"2s935sn1qk","public":true,"customColor":{"top-bar":"172131","right-sidebar":"131B26","highlight":"1EBCE2"},"publishDate":"2023-02-09T19:27:05.000Z"},"item":[{"name":"AI Risk","item":[{"name":"Submit AI Model Analysis Request","id":"a4eacf98-328d-4124-806b-9f20938d9d32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"kind\": \"model\",\n  \"owner\": \"moonshotai\",\n  \"repo\": \"Kimi-K2-Instruct-0905\",\n  \"revision\": \"ac6c49f04883bd0a0598b790693a72061c676629\",\n  \"includeArxivData\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/model-analysis","description":"<p><strong>Note: The API endpoints in this module requires the AI Risk feature to be turned on for the organization.</strong></p>\n<p>This endpoint submits an AI model for comprehensive security and compliance analysis. The analysis examines the model's architecture, supplier, licenses, lineage, dataset associations, software dependencies (and vulnerabilities discovered in them), staleness, and freshness to provide insights into the model's risk profile.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header.</p>\n<p><strong>Required token permissions:</strong> <code>create:ai-model-analysis</code></p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>kind</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The type of resource being analyzed. Use <code>\"model\"</code> for AI model analysis.</td>\n</tr>\n<tr>\n<td><code>repo</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The repository name of the AI model (e.g., <code>\"MiniMax-M2.1\"</code>). This identifies the specific model to analyze.</td>\n</tr>\n<tr>\n<td><code>owner</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The owner or organization that maintains the model (e.g., <code>\"MiniMaxAI\"</code>).</td>\n</tr>\n<tr>\n<td><code>revision</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The version or revision of the model to analyze. Use <code>\"HEAD\"</code> to analyze the latest version, or specify a specific commit hash or tag.</td>\n</tr>\n<tr>\n<td><code>includeArxivData</code></td>\n<td>boolean</td>\n<td>No</td>\n<td>When set to <code>true</code>, the analysis will extract data from associated arXiv research papers, providing additional context about the datasets used or model's training, evaluation, and testing. Default: <code>true</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-format\">Response Format</h2>\n<h3 id=\"success-response-200-ok\">Success Response (200 OK)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"errorDetails\": [],\n  \"data\": {\n    \"_id\": \"695e962fdd6998808896e7de\"\n  }\n}\n\n</code></pre>\n<p><strong>Response Fields:</strong></p>\n<ul>\n<li><p><code>success</code>: Boolean indicating whether the analysis request was successfully submitted</p>\n</li>\n<li><p><code>errorDetails</code>: Array of error messages (empty on success)</p>\n</li>\n<li><p><code>data._id</code>: Unique identifier for the submitted analysis request. Use this ID to retrieve the analysis results later.</p>\n</li>\n</ul>\n<h2 id=\"example-use-case\">Example Use Case</h2>\n<p>A security team wants to analyze the MiniMax-M2.1 model before deploying it in production. They submit an analysis request with <code>includeArxivData: true</code> to get comprehensive insights including research paper data.</p>\n<hr />\n<h2 id=\"next-steps\">Next Steps</h2>\n<p>After submitting a model analysis request, you'll need to poll for the analysis results and then download the AIBOM (AI Bill of Materials). Here's a complete TypeScript implementation:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ModelAnalysisRequest {\n  kind: 'model';\n  repo: string;\n  owner: string;\n  revision: string;\n  includeArxivData?: boolean;\n}\ninterface AnalysisSubmitResponse {\n  success: boolean;\n  errorDetails: string[];\n  data: {\n    _id: string;\n  };\n}\ninterface AnalysisStatusResponse {\n  success: boolean;\n  errorDetails: string[];\n  data: {\n    _id: string;\n    analysisStatus: 'pending' | 'in-progress' | 'completed' | 'failed';\n    repo: string;\n    owner: string;\n    revision: string;\n    createdAt: string;\n    updatedAt: string;\n    // Additional fields available when completed\n    results?: any;\n  };\n}\nclass ManifestAIAnalysis {\n  private apiUrl: string;\n  private apiToken: string;\n  constructor(apiUrl: string, apiToken: string) {\n    this.apiUrl = apiUrl;\n    this.apiToken = apiToken;\n  }\n  /**\n   * Step 1: Submit a new AI model analysis request\n   */\n  async submitAnalysis(request: ModelAnalysisRequest): Promise&lt;string&gt; {\n    try {\n      const response = await fetch(`${this.apiUrl}/model-analysis`, {\n        method: 'POST',\n        headers: {\n          'Authorization': `Bearer ${this.apiToken}`,\n          'Content-Type': 'application/json',\n        },\n        body: JSON.stringify(request),\n      });\n      if (!response.ok) {\n        throw new Error(`Failed to submit analysis: ${response.status} ${response.statusText}`);\n      }\n      const result: AnalysisSubmitResponse = await response.json();\n      if (!result.success) {\n        throw new Error(`Analysis submission failed: ${result.errorDetails.join(', ')}`);\n      }\n      console.log(`✓ Analysis submitted successfully. Request ID: ${result.data._id}`);\n      return result.data._id;\n    } catch (error) {\n      console.error('Error submitting analysis:', error);\n      throw error;\n    }\n  }\n  /**\n   * Step 2: Poll for analysis completion\n   * Checks every 30 seconds until status is 'completed' or 'failed'\n   */\n  async pollAnalysisStatus(\n    requestId: string,\n    maxAttempts: number = 60, // 30 minutes max (60 * 30 seconds)\n    intervalMs: number = 30000 // 30 seconds\n  ): Promise&lt;AnalysisStatusResponse&gt; {\n    let attempts = 0;\n    while (attempts &lt; maxAttempts) {\n      try {\n        const response = await fetch(`${this.apiUrl}/model-analysis/${requestId}`, {\n          method: 'GET',\n          headers: {\n            'Authorization': `Bearer ${this.apiToken}`,\n          },\n        });\n        if (!response.ok) {\n          throw new Error(`Failed to get analysis status: ${response.status} ${response.statusText}`);\n        }\n        const result: AnalysisStatusResponse = await response.json();\n        if (!result.success) {\n          throw new Error(`Failed to retrieve analysis: ${result.errorDetails.join(', ')}`);\n        }\n        const status = result.data.analysisStatus;\n        console.log(`[Attempt ${attempts + 1}/${maxAttempts}] Analysis status: ${status}`);\n        if (status === 'completed') {\n          console.log('✓ Analysis completed successfully!');\n          return result;\n        }\n        if (status === 'failed') {\n          throw new Error('Analysis failed on the server');\n        }\n        // Status is 'pending' or 'in-progress', wait before next poll\n        attempts++;\n        if (attempts &lt; maxAttempts) {\n          console.log(`Waiting ${intervalMs / 1000} seconds before next check...`);\n          await this.sleep(intervalMs);\n        }\n      } catch (error) {\n        console.error(`Error polling analysis status (attempt ${attempts + 1}):`, error);\n        throw error;\n      }\n    }\n    throw new Error(`Analysis did not complete within ${maxAttempts * intervalMs / 1000} seconds`);\n  }\n  /**\n   * Step 3: Download the AIBOM (AI Bill of Materials)\n   */\n  async downloadAIBOM(requestId: string, outputPath?: string): Promise&lt;Blob&gt; {\n    try {\n      const response = await fetch(`${this.apiUrl}/model-analysis/${requestId}/aibom`, {\n        method: 'GET',\n        headers: {\n          'Authorization': `Bearer ${this.apiToken}`,\n        },\n      });\n      if (!response.ok) {\n        throw new Error(`Failed to download AIBOM: ${response.status} ${response.statusText}`);\n      }\n      const blob = await response.blob();\n      console.log(`✓ AIBOM downloaded successfully (${blob.size} bytes)`);\n      // Optional: Save to file in Node.js environment\n      if (outputPath &amp;&amp; typeof window === 'undefined') {\n        const fs = await import('fs');\n        const buffer = Buffer.from(await blob.arrayBuffer());\n        fs.writeFileSync(outputPath, buffer);\n        console.log(`✓ AIBOM saved to: ${outputPath}`);\n      }\n      return blob;\n    } catch (error) {\n      console.error('Error downloading AIBOM:', error);\n      throw error;\n    }\n  }\n  /**\n   * Complete workflow: Submit, poll, and download\n   */\n  async analyzeModel(request: ModelAnalysisRequest, outputPath?: string): Promise&lt;Blob&gt; {\n    console.log('Starting AI model analysis workflow...\\n');\n    // Step 1: Submit analysis\n    console.log('Step 1: Submitting analysis request...');\n    const requestId = await this.submitAnalysis(request);\n    // Step 2: Poll for completion\n    console.log('\\nStep 2: Polling for analysis completion...');\n    await this.pollAnalysisStatus(requestId);\n    // Step 3: Download AIBOM\n    console.log('\\nStep 3: Downloading AIBOM...');\n    const aibom = await this.downloadAIBOM(requestId, outputPath);\n    console.log('\\n✓ Complete workflow finished successfully!');\n    return aibom;\n  }\n  private sleep(ms: number): Promise&lt;void&gt; {\n    return new Promise(resolve =&gt; setTimeout(resolve, ms));\n  }\n}\n// Usage Example\nasync function main() {\n  const analyzer = new ManifestAIAnalysis(\n    process.env.API_URL || 'https://api.manifestcyber.com',\n    process.env.API_TOKEN || 'your-api-token-here'\n  );\n  try {\n    const aibom = await analyzer.analyzeModel(\n      {\n        kind: 'model',\n        repo: 'MiniMax-M2.1',\n        owner: 'MiniMaxAI',\n        revision: 'HEAD',\n        includeArxivData: true,\n      },\n      './aibom-output.json' // Optional: specify output file path\n    );\n    console.log('Analysis complete! AIBOM ready for use.');\n  } catch (error) {\n    console.error('Analysis workflow failed:', error);\n    process.exit(1);\n  }\n}\n// Run the example\nmain();\n\n</code></pre>\n<h4 id=\"api-endpoints-used\">API Endpoints Used:</h4>\n<ul>\n<li><p><strong>POST</strong> <code>{{apiUrl}}/model-analysis</code> - Submit analysis request</p>\n</li>\n<li><p><strong>GET</strong> <code>{{apiUrl}}/model-analysis/:requestId</code> - Get analysis status</p>\n</li>\n<li><p><strong>GET</strong> <code>{{apiUrl}}/model-analysis/:requestId/aibom</code> - Download AIBOM</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["model-analysis"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c036a2a6-68f6-4522-81be-a39e40b8b5cc","name":"Submit AI Model Analysis Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"kind\": \"model\",\n  \"owner\": \"moonshotai\",\n  \"repo\": \"Kimi-K2-Instruct-0905\",\n  \"revision\": \"ac6c49f04883bd0a0598b790693a72061c676629\",\n  \"includeArxivData\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/model-analysi"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Date","value":"Thu, 12 Mar 2026 19:12:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.6"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.development.manifestcyber.dev"},{"key":"ETag","value":"W/\"4c-wQ/ADTg9/VXd00caydfyB7n50v0\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.development.manifestcyber.dev; script-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.development.manifestcyber.dev https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.development.manifestcyber.dev https://cdn.merge.dev; font-src 'self' blob: https://.development.manifestcyber.dev https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.development.manifestcyber.dev; child-src 'self' blob: https://.development.manifestcyber.dev https://cdn.merge.dev; frame-src 'self' blob: https://.development.manifestcyber.dev https://cdn.merge.dev; worker-src 'self' blob: https://*.development.manifestcyber.dev; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errorDetails\": [],\n    \"data\": {\n        \"_id\": \"69b0e2455ae038b130560da4\"\n    }\n}"}],"_postman_id":"a4eacf98-328d-4124-806b-9f20938d9d32"},{"name":"Get AI model analysis","id":"6331caa5-dec8-4822-aff9-6a71851f2281","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/model-analysis/:modelId","description":"<p>Retrieves a comprehensive AI model analysis report for a specific model by its unique identifier. This endpoint returns detailed metadata, risk assessments, software dependencies, vulnerability data, and country of origin information for the specified model.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header.</p>\n<p><strong>Required token permissions:</strong> <code>read:ai-model-analysis</code></p>\n<h2 id=\"path-variables\">Path Variables</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>modelId</code></td>\n<td>string</td>\n<td>The unique identifier of the AI model to retrieve analysis for</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-structure\">Response Structure</h2>\n<h3 id=\"model-identity\">Model Identity</h3>\n<p>Core identifying fields returned for the model:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"_id\": \"string\",\n  \"modelId\": \"string\",\n  \"modelInventoryId\": \"string\",\n  \"inventoryId\": \"string\",\n  \"id\": \"string\",\n  \"name\": \"string\",\n  \"version\": \"string\",\n  \"supplier\": \"string\",\n  \"purl\": \"string\",\n  \"purlWithoutRevision\": \"string\",\n  \"packageUrl\": \"string\"\n}\n\n</code></pre>\n<h3 id=\"model-metadata\">Model Metadata</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"lastModified\": \"ISO 8601 date string\",\n  \"hfDateModified\": \"ISO 8601 date string\",\n  \"hfDateCreated\": \"ISO 8601 date string\",\n  \"categories\": [\"string\"],\n  \"downloads\": 0,\n  \"likes\": 0,\n  \"type\": \"string\",\n  \"hfArchitecture\": \"string\",\n  \"modelSource\": \"string\",\n  \"homepageUrl\": \"string\",\n  \"license\": \"string\",\n  \"licenses\": [\n    {\n      \"rawLicenseId\": \"string\",\n      \"licenseId\": \"string\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"software-dependencies\">Software Dependencies</h3>\n<p>An array of software libraries and frameworks the model depends on:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"softwareDependencies\": [\n    {\n      \"_id\": \"string\",\n      \"library\": \"string\",\n      \"version\": \"string\",\n      \"foundIn\": \"string\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"dependency-vulnerabilities\">Dependency Vulnerabilities</h3>\n<p>An array of CVE vulnerabilities discovered in the model's software dependencies. Each entry contains:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"vulnerabilities\": [\n    {\n      \"_id\": \"string\",\n      \"cveId\": \"string\",\n      \"cvss3BaseScore\": 0.0,\n      \"cvss3BaseSeverity\": \"CRITICAL|HIGH|MEDIUM|LOW|INFO\",\n      \"preferredScore\": 0.0,\n      \"preferredSeverity\": \"string\",\n      \"priorityScore\": 0,\n      \"epssScore\": 0.0,\n      \"epssPercentile\": 0.0,\n      \"publishDate\": \"ISO 8601 date string\",\n      \"description\": \"string\",\n      \"recommendedAction\": \"mitigate|monitor|accept\",\n      \"mitigation\": [\n        {\n          \"&lt;packageUrl&gt;\": {\n            \"fixedVersions\": [\"string\"],\n            \"lastAffectedVersions\": [\"string\"]\n          }\n        }\n      ],\n      \"affectedComponents\": [\n        {\n          \"id\": \"string\",\n          \"affectedComponentName\": \"string (purl)\"\n        }\n      ],\n      \"aliases\": [\"string\"],\n      \"sources\": [\"OSV\", \"NVD\"],\n      \"status\": \"PUBLISHED\"\n    }\n  ]\n}\n\n</code></pre>\n<p><strong>Key fields:</strong></p>\n<ul>\n<li><p><strong>cveId</strong>: The CVE or GHSA identifier for the vulnerability</p>\n</li>\n<li><p><strong>cvss3BaseSeverity</strong>: Severity rating — <code>CRITICAL</code>, <code>HIGH</code>, <code>MEDIUM</code>, <code>LOW</code>, or <code>INFO</code></p>\n</li>\n<li><p><strong>cvss3BaseScore</strong>: Numeric CVSS v3 base score (0.0–10.0)</p>\n</li>\n<li><p><strong>preferredScore / preferredSeverity</strong>: Manifest's preferred/normalized score and severity</p>\n</li>\n<li><p><strong>recommendedAction</strong>: Manifest's recommended triage action — <code>mitigate</code>, <code>monitor</code>, or <code>accept</code></p>\n</li>\n<li><p><strong>mitigation</strong>: Map of affected package URLs to available fix versions</p>\n</li>\n<li><p><strong>affectedComponents</strong>: List of specific dependency components (by purl) affected by this CVE</p>\n</li>\n<li><p><strong>epssScore / epssPercentile</strong>: Exploit Prediction Scoring System values</p>\n</li>\n<li><p><strong>aliases</strong>: Alternative identifiers (e.g., GHSA IDs)</p>\n</li>\n</ul>\n<h3 id=\"risk-overview\">Risk Overview</h3>\n<p>A summary of the model's overall risk posture:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"riskOverview\": {\n    \"overallRisk\": \"CRITICAL|HIGH|MEDIUM|LOW|INFO\",\n    \"riskScore\": 0.0,\n    \"countryOfOriginRisk\": \"string\",\n    \"countryOfOrigin\": \"string\",\n    \"vulnerabilityCounts\": {\n      \"critical\": 0,\n      \"high\": 0,\n      \"medium\": 0,\n      \"low\": 0,\n      \"info\": 0,\n      \"total\": 0\n    }\n  }\n}\n\n</code></pre>\n<h3 id=\"country-of-origin-evidence\">Country of Origin Evidence</h3>\n<p>Provides the evidence and reasoning behind the country of origin determination for the AI model:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"evidence\": {\n    \"sources\": [\n      {\n        \"type\": \"string\",\n        \"url\": \"string\",\n        \"description\": \"string\"\n      }\n    ],\n    \"reasoning\": \"string\",\n    \"confidenceScore\": 0.0\n  }\n}\n\n</code></pre>\n<p><strong>Key fields:</strong></p>\n<ul>\n<li><p><strong>sources</strong> (array): List of evidence sources used to determine country of origin. Each source includes:</p>\n<ul>\n<li><p><strong>type</strong>: The category of source (e.g., <code>\"repository\"</code>, <code>\"publication\"</code>, <code>\"organization_profile\"</code>)</p>\n</li>\n<li><p><strong>url</strong>: Direct link to the source</p>\n</li>\n<li><p><strong>description</strong>: Human-readable summary of what this source contributes</p>\n</li>\n</ul>\n</li>\n<li><p><strong>reasoning</strong> (string): A natural-language explanation of how the country of origin was determined from the available sources</p>\n</li>\n<li><p><strong>confidenceScore</strong> (number): A score between <code>0.0</code> and <code>1.0</code> indicating confidence in the country of origin finding — higher values indicate stronger evidence</p>\n</li>\n</ul>\n<h2 id=\"error-responses\">Error Responses</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>400</code></td>\n<td>Bad Request — invalid or missing <code>modelId</code></td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td>Unauthorized — missing or invalid API token</td>\n</tr>\n<tr>\n<td><code>403</code></td>\n<td>Forbidden — insufficient permissions</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td>Not Found — no model found for the given <code>modelId</code></td>\n</tr>\n<tr>\n<td><code>500</code></td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["model-analysis",":modelId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier of the AI model to retrieve analysis for. Example: 68ee6aabcde6902d09e0e0cd obtained in responsse to model analysis request.</p>\n","type":"text/plain"},"type":"any","value":"69b0e2455ae038b130560da4","key":"modelId"}]}},"response":[{"id":"7e49bbe6-1ef3-47ec-aaf6-5e4439d27ec1","name":"Get AI model analysis","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/model-analysis/:modelId","host":["{{apiUrl}}"],"path":["model-analysis",":modelId"],"variable":[{"key":"modelId","value":"69b0e2455ae038b130560da4","description":"The unique identifier of the AI model to retrieve analysis for. Example: 68ee6aabcde6902d09e0e0cd obtained in responsse to model analysis request."}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 12 Mar 2026 18:44:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.6"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.development.manifestcyber.dev"},{"key":"ETag","value":"W/\"d6cb-4TUthJTaxBqy4CVwEyRaTaMCY7I\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.development.manifestcyber.dev; script-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.development.manifestcyber.dev https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.development.manifestcyber.dev https://cdn.merge.dev; font-src 'self' blob: https://.development.manifestcyber.dev https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.development.manifestcyber.dev; child-src 'self' blob: https://.development.manifestcyber.dev https://cdn.merge.dev; frame-src 'self' blob: https://.development.manifestcyber.dev https://cdn.merge.dev; worker-src 'self' blob: https://*.development.manifestcyber.dev; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errorDetails\": [],\n    \"data\": {\n        \"_id\": \"69b0e2455ae038b130560da4\",\n        \"modelId\": \"69b0e2455ae038b130560da4\",\n        \"modelInventoryId\": \"69b0e2455ae038b130560da4\",\n        \"inventoryId\": \"69b0e2455ae038b130560da4\",\n        \"id\": \"69b0e2455ae038b130560da4\",\n        \"name\": \"Kimi-K2-Instruct-0905\",\n        \"version\": \"ac6c49f04883bd0a0598b790693a72061c676629\",\n        \"supplier\": \"moonshotai\",\n        \"purl\": \"pkg:huggingface/moonshotai/Kimi-K2-Instruct-0905@ac6c49f04883bd0a0598b790693a72061c676629\",\n        \"purlWithoutRevision\": \"pkg:huggingface/moonshotai/Kimi-K2-Instruct-0905\",\n        \"packageUrl\": \"pkg:huggingface/moonshotai/Kimi-K2-Instruct-0905@ac6c49f04883bd0a0598b790693a72061c676629\",\n        \"lastModified\": \"2026-01-30T04:50:25.000Z\",\n        \"hfDateModified\": \"2026-01-30T04:50:25.000Z\",\n        \"hfDateCreated\": \"2025-09-03T03:34:36.000Z\",\n        \"categories\": [\n            \"transformers\",\n            \"safetensors\",\n            \"kimi_k2\",\n            \"text-generation\",\n            \"conversational\",\n            \"custom_code\",\n            \"license:other\",\n            \"eval-results\",\n            \"endpoints_compatible\",\n            \"fp8\",\n            \"region:us\"\n        ],\n        \"downloads\": 27067,\n        \"likes\": 685,\n        \"type\": \"text-generation\",\n        \"hfArchitecture\": \"kimi_k2\",\n        \"modelSource\": \"huggingface\",\n        \"homepageUrl\": \"https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905\",\n        \"license\": \"other\",\n        \"licenses\": [\n            {\n                \"rawLicenseId\": \"other\",\n                \"licenseId\": \"69b0e24994a3b7426fe4cf27\"\n            }\n        ],\n        \"researchPapers\": [],\n        \"papers\": [],\n        \"softwareDependencies\": [\n            {\n                \"_id\": \"69b0e24994a3b7426fe4cf2a\",\n                \"library\": \"transformers\",\n                \"version\": \"4.51.3\",\n                \"foundIn\": \"unknown\"\n            },\n            {\n                \"_id\": \"69b0e24994a3b7426fe4cf2b\",\n                \"library\": \"safetensors\",\n                \"version\": \"unknown\",\n                \"foundIn\": \"unknown\"\n            },\n            {\n                \"_id\": \"69b0e24994a3b7426fe4cf2c\",\n                \"library\": \"jinja\",\n                \"version\": \"unknown\",\n                \"foundIn\": \"unknown\"\n            },\n            {\n                \"_id\": \"69b0e24994a3b7426fe4cf2d\",\n                \"library\": \"vllm\",\n                \"version\": \"unknown\",\n                \"foundIn\": \"unknown\"\n            },\n            {\n                \"_id\": \"69b0e24994a3b7426fe4cf2e\",\n                \"library\": \"tokenizers\",\n                \"version\": \"unknown\",\n                \"foundIn\": \"unknown\"\n            },\n            {\n                \"_id\": \"69b0e24994a3b7426fe4cf2f\",\n                \"library\": \"huggingface_hub\",\n                \"version\": \"unknown\",\n                \"foundIn\": \"unknown\"\n            },\n            {\n                \"_id\": \"69b0e24994a3b7426fe4cf30\",\n                \"library\": \"torch\",\n                \"version\": \"unknown\",\n                \"foundIn\": \"unknown\"\n            },\n            {\n                \"_id\": \"69b0e24994a3b7426fe4cf31\",\n                \"library\": \"accelerate\",\n                \"version\": \"unknown\",\n                \"foundIn\": \"unknown\"\n            },\n            {\n                \"_id\": \"69b0e24994a3b7426fe4cf32\",\n                \"library\": \"numpy\",\n                \"version\": \"unknown\",\n                \"foundIn\": \"unknown\"\n            },\n            {\n                \"_id\": \"69b0e24994a3b7426fe4cf33\",\n                \"library\": \"tiktoken\",\n                \"version\": \"unknown\",\n                \"foundIn\": \"unknown\"\n            }\n        ],\n        \"vulnerabilities\": [\n            {\n                \"_id\": \"686cc2249fdc1df34fe2f025\",\n                \"cveId\": \"CVE-2025-3777\",\n                \"__v\": 0,\n                \"aliasIds\": [],\n                \"aliases\": [\n                    \"CVE-2025-3777\",\n                    \"GHSA-PHHR-52QP-3MJ4\"\n                ],\n                \"credits\": [],\n                \"cvss2BaseScore\": null,\n                \"cvss2BaseSeverity\": null,\n                \"cvss2Data\": {\n                    \"_id\": \"68cd92cae8e3cd1ef05c2300\"\n                },\n                \"cvss3BaseScore\": 3.5,\n                \"cvss3BaseSeverity\": \"LOW\",\n                \"cvss3Data\": {\n                    \"version\": \"3.0\",\n                    \"vectorString\": \"CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:N/A:N\",\n                    \"attackComplexity\": \"LOW\",\n                    \"privilegesRequired\": \"LOW\",\n                    \"userInteraction\": \"REQUIRED\",\n                    \"scope\": \"UNCHANGED\",\n                    \"confidentialityImpact\": \"LOW\",\n                    \"integrityImpact\": \"NONE\",\n                    \"availabilityImpact\": \"NONE\",\n                    \"baseScore\": 3.5,\n                    \"baseSeverity\": \"LOW\",\n                    \"_id\": \"68cd92cae8e3cd1ef05c2301\"\n                },\n                \"cvssData\": [\n                    {\n                        \"version\": \"3.0\",\n                        \"vector\": \"CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:N/A:N\",\n                        \"score\": 3.5,\n                        \"severity\": \"LOW\",\n                        \"source\": \"CNA\",\n                        \"_id\": \"68cd92cae8e3cd1ef05c2302\"\n                    },\n                    {\n                        \"version\": \"3.0\",\n                        \"vector\": \"CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:N/A:N\",\n                        \"score\": 3.5,\n                        \"severity\": \"LOW\",\n                        \"source\": \"OSV\",\n                        \"_id\": \"6903b7f5fd6fa668689d9254\"\n                    }\n                ],\n                \"cvssDataAddedTimestamp\": \"2025-09-19T17:28:38.409Z\",\n                \"dateCreated\": \"2025-07-08T07:00:51.664Z\",\n                \"dateModified\": \"2026-03-12T07:50:20.558Z\",\n                \"description\": \"Hugging Face Transformers versions up to 4.49.0 are affected by an improper input validation vulnerability in the `image_utils.py` file. The vulnerability arises from insecure URL validation using the `startswith()` method, which can be bypassed through URL username injection. This allows attackers to craft URLs that appear to be from YouTube but resolve to malicious domains, potentially leading to phishing attacks, malware distribution, or data exfiltration. The issue is fixed in version 4.52.1.\",\n                \"epssPercentile\": 0.0328,\n                \"epssScore\": 0.00016,\n                \"kevData\": {\n                    \"_id\": \"686cc2234002720ae0e32d70\"\n                },\n                \"lastCheckedMitigation\": null,\n                \"listingLastModified\": \"2025-08-07T03:54:16.957Z\",\n                \"mitigation\": [\n                    {\n                        \"pkg:pypi/transformers\": {\n                            \"fixedVersions\": [\n                                \"4.52.1\"\n                            ],\n                            \"lastAffectedVersions\": []\n                        }\n                    }\n                ],\n                \"mitigationNotes\": [],\n                \"nvdMatchingChecksum\": \"03219a46af64d104ed107de024ae590ea1fc37f3b3290841683cc9470f1f6a8e\",\n                \"osvMatchingChecksum\": {\n                    \"CVE-2025-3777\": \"b9e4c7efbc6be2792a9c26d63708769c5b0f5b34313d5306eb07486f99785936\",\n                    \"GHSA-PHHR-52QP-3MJ4\": \"87187383991672d692d26cc4b4c48f5d02ae88d7b16494d2d525262d1357195a\"\n                },\n                \"preferredScore\": 3.5,\n                \"preferredSeverity\": \"LOW\",\n                \"priorityScore\": 213533,\n                \"publishDate\": \"2025-07-07T10:15:28.000Z\",\n                \"recommendedAction\": \"accept\",\n                \"references\": [\n                    {\n                        \"type\": \"ADVISORY\",\n                        \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2025-3777\",\n                        \"_id\": \"69b2684e898aa7f4961b46f8\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/4dda5f71b35fb70cf602187eef84bb17a50b9082\",\n                        \"_id\": \"69b2684e898aa7f4961b46f9\"\n                    },\n                    {\n                        \"type\": \"PACKAGE\",\n                        \"url\": \"https://github.com/huggingface/transformers\",\n                        \"_id\": \"69b2684e898aa7f4961b46fa\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/blame/a7d2bbaaa8aac64f7c1ee8c1421cfe84b38359a4/src/transformers/image_utils.py\",\n                        \"_id\": \"69b2684e898aa7f4961b46fb\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://huntr.com/bounties/ccba0730-9248-4853-b7ff-5c20e6364f09\",\n                        \"_id\": \"69b2684e898aa7f4961b46fc\"\n                    },\n                    {\n                        \"type\": \"EVIDENCE\",\n                        \"url\": \"https://huntr.com/bounties/ccba0730-9248-4853-b7ff-5c20e6364f09\",\n                        \"_id\": \"6903b7f5fd6fa668689d9255\"\n                    },\n                    {\n                        \"type\": \"FIX\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/4dda5f71b35fb70cf602187eef84bb17a50b9082\",\n                        \"_id\": \"6903b7f5fd6fa668689d9256\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/4dda5f71b35fb70cf602187eef84bb17a50b9082\",\n                        \"_id\": \"68cd92cae8e3cd1ef05c2303\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://huntr.com/bounties/ccba0730-9248-4853-b7ff-5c20e6364f09\",\n                        \"_id\": \"68cd92cae8e3cd1ef05c2304\"\n                    }\n                ],\n                \"sourceIdentifier\": null,\n                \"sources\": [\n                    \"OSV\",\n                    \"NVD\"\n                ],\n                \"status\": \"PUBLISHED\",\n                \"ticketIds\": null,\n                \"componentVulnerabilities\": [\n                    {\n                        \"_id\": \"69b1b5c8006efb8786cc7ca2\",\n                        \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                        \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                        \"cveId\": \"CVE-2025-3777\",\n                        \"__v\": 0,\n                        \"dateCreated\": \"2026-03-11T18:34:48.548Z\",\n                        \"dateModified\": \"2026-03-11T18:34:48.548Z\",\n                        \"datePublished\": null,\n                        \"epssScore\": null,\n                        \"explanations\": [\n                            \"No explanations available\"\n                        ],\n                        \"jobNames\": [\n                            \"job-vulnerability-match\"\n                        ],\n                        \"packageUrl\": null,\n                        \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                        \"packageVersion\": \"4.51.3\",\n                        \"preferredScore\": null,\n                        \"preferredSeverity\": null,\n                        \"priorityScore\": null,\n                        \"recommendedAction\": \"accept\",\n                        \"severityLabel\": null,\n                        \"severityScore\": null,\n                        \"sourceLinks\": [\n                            \"https://osv.dev/vulnerability/CVE-2025-3777\"\n                        ],\n                        \"sources\": [\n                            \"OSV\"\n                        ],\n                        \"vulnerabilityId\": null,\n                        \"assetComponents\": [\n                            {\n                                \"_id\": \"69b0e24b006efb8786c96426\",\n                                \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                                \"organizationAssetId\": \"69b0e24a006efb8786c96381\",\n                                \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                                \"__v\": 0,\n                                \"commitVersionHash\": null,\n                                \"componentFullyQualifiedName\": \"transformers\",\n                                \"componentPackageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"componentPackageVersion\": \"4.51.3\",\n                                \"countVulnerabilities\": {\n                                    \"careAbout\": 0,\n                                    \"critical\": 0,\n                                    \"high\": 2,\n                                    \"medium\": 3,\n                                    \"low\": 1,\n                                    \"info\": 0,\n                                    \"total\": 6,\n                                    \"mitigate\": 0,\n                                    \"monitor\": 2,\n                                    \"accept\": 4,\n                                    \"inKEV\": 0,\n                                    \"inKEVPreviously\": 0,\n                                    \"_id\": \"69b0e24ccae46d8137f11813\"\n                                },\n                                \"cpes\": [],\n                                \"cveIds\": {},\n                                \"dateCreated\": \"2026-03-11T03:32:27.461Z\",\n                                \"dateModified\": \"2026-03-11T03:32:28.937Z\",\n                                \"ecosystem\": \"pypi\",\n                                \"firstCpeParts\": null,\n                                \"fullyQualifiedName\": \"transformers\",\n                                \"hasNamespace\": false,\n                                \"isVulnerable\": true,\n                                \"licenses\": [\n                                    {\n                                        \"id\": \"Apache-1.1\",\n                                        \"name\": \"Apache-1.1\",\n                                        \"text\": \"(Apache-1.1)\",\n                                        \"url\": null,\n                                        \"acknowledgement\": null,\n                                        \"licensing\": null,\n                                        \"properties\": null,\n                                        \"matchedId\": \"6674c0d37aa4245b3eb4592e\",\n                                        \"_id\": \"69b0e24b62e4c36e9bfee83c\"\n                                    }\n                                ],\n                                \"mimeType\": null,\n                                \"name\": \"transformers\",\n                                \"packageSource\": null,\n                                \"packageSourceVersion\": null,\n                                \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"packageVersion\": null,\n                                \"purlParts\": {\n                                    \"ecosystem\": \"pypi\",\n                                    \"namespace\": \"\",\n                                    \"name\": \"transformers\",\n                                    \"version\": \"4.51.3\",\n                                    \"subpath\": \"\",\n                                    \"distro\": null,\n                                    \"distroVersion\": null,\n                                    \"source\": null,\n                                    \"sourceVersion\": null,\n                                    \"epoch\": null,\n                                    \"rawPurl\": \"pkg:pypi/transformers@4.51.3\",\n                                    \"vendorName\": \"\",\n                                    \"vendorNameAliases\": [],\n                                    \"validation\": {\n                                        \"isValid\": false,\n                                        \"validationErrors\": [\n                                            \"PURL does not follow general structure. See PURL specification to ensure your package URLs are valid.\"\n                                        ]\n                                    },\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83d\"\n                                },\n                                \"resolvedCpes\": null,\n                                \"riskScore\": \"low\",\n                                \"supplier\": {\n                                    \"text\": [],\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83b\",\n                                    \"contact\": []\n                                },\n                                \"vendorName\": []\n                            }\n                        ]\n                    }\n                ],\n                \"recommendationScore\": 1,\n                \"triageScore\": 7,\n                \"severity\": \"LOW\",\n                \"cvssScore\": 3.5,\n                \"affectedComponents\": [\n                    {\n                        \"id\": \"69b0e24b006efb8786c963d4\",\n                        \"affectedComponentName\": \"pkg:pypi/transformers@4.51.3\"\n                    }\n                ]\n            },\n            {\n                \"_id\": \"68720810d9624579b63c4937\",\n                \"cveId\": \"CVE-2025-3933\",\n                \"__v\": 0,\n                \"aliasIds\": [],\n                \"aliases\": [\n                    \"CVE-2025-3933\",\n                    \"GHSA-37MW-44QP-F5JM\"\n                ],\n                \"credits\": [],\n                \"cvss2BaseScore\": null,\n                \"cvss2BaseSeverity\": null,\n                \"cvss2Data\": {\n                    \"_id\": \"6895a0ccc6527a2d963402de\"\n                },\n                \"cvss3BaseScore\": 5.3,\n                \"cvss3BaseSeverity\": \"MEDIUM\",\n                \"cvss3Data\": {\n                    \"version\": \"3.1\",\n                    \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\n                    \"attackComplexity\": \"LOW\",\n                    \"privilegesRequired\": \"NONE\",\n                    \"userInteraction\": \"NONE\",\n                    \"scope\": \"UNCHANGED\",\n                    \"confidentialityImpact\": \"NONE\",\n                    \"integrityImpact\": \"NONE\",\n                    \"availabilityImpact\": \"LOW\",\n                    \"baseScore\": 5.3,\n                    \"baseSeverity\": \"MEDIUM\",\n                    \"_id\": \"6895a0ccc6527a2d963402df\"\n                },\n                \"cvssData\": [\n                    {\n                        \"version\": \"3.1\",\n                        \"vector\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\n                        \"score\": 5.3,\n                        \"severity\": \"MEDIUM\",\n                        \"source\": \"NVD\",\n                        \"_id\": \"6895a0ccc6527a2d963402e1\"\n                    },\n                    {\n                        \"version\": \"3.1\",\n                        \"vector\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\n                        \"score\": 5.3,\n                        \"severity\": \"MEDIUM\",\n                        \"source\": \"OSV\",\n                        \"_id\": \"6903b7f7fd6fa668689dcec9\"\n                    }\n                ],\n                \"cvssDataAddedTimestamp\": null,\n                \"dateCreated\": \"2025-07-12T07:00:30.264Z\",\n                \"dateModified\": \"2026-03-12T07:50:20.558Z\",\n                \"description\": \"A Regular Expression Denial of Service (ReDoS) vulnerability was discovered in the Hugging Face Transformers library, specifically within the DonutProcessor class's `token2json()` method. This vulnerability affects versions 4.50.3 and earlier, and is fixed in version 4.52.1. The issue arises from the regex pattern `<s_(.*?)>` which can be exploited to cause excessive CPU consumption through crafted input strings due to catastrophic backtracking. This vulnerability can lead to service disruption, resource exhaustion, and potential API service vulnerabilities, impacting document processing tasks using the Donut model.\",\n                \"epssPercentile\": 0.08867,\n                \"epssScore\": 0.00032,\n                \"kevData\": {\n                    \"_id\": \"6872080e72fca0c69b12ecb0\"\n                },\n                \"lastCheckedMitigation\": null,\n                \"listingLastModified\": \"2025-08-07T01:01:46.780Z\",\n                \"mitigation\": [\n                    {\n                        \"pkg:pypi/transformers\": {\n                            \"fixedVersions\": [\n                                \"4.52.1\"\n                            ],\n                            \"lastAffectedVersions\": []\n                        }\n                    }\n                ],\n                \"mitigationNotes\": [],\n                \"nvdMatchingChecksum\": \"044f2b962682fc8db79c719a9075a01100164dbb1789497f1553cbc899ae991a\",\n                \"osvMatchingChecksum\": {\n                    \"GHSA-37MW-44QP-F5JM\": \"6b1f1692803422606512fdbafb3980692baa20e85bbed0fc9092e76ce35933f2\",\n                    \"CVE-2025-3933\": \"b9e4c7efbc6be2792a9c26d63708769c5b0f5b34313d5306eb07486f99785936\"\n                },\n                \"preferredScore\": 5.3,\n                \"preferredSeverity\": \"MEDIUM\",\n                \"priorityScore\": 215389,\n                \"publishDate\": \"2025-07-11T10:15:22.000Z\",\n                \"recommendedAction\": \"accept\",\n                \"references\": [\n                    {\n                        \"type\": \"ADVISORY\",\n                        \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2025-3933\",\n                        \"_id\": \"69b26845898aa7f4961a11c3\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/pull/37788\",\n                        \"_id\": \"69b26845898aa7f4961a11c4\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/ebbe9b12dd75b69f92100d684c47f923ee262a93\",\n                        \"_id\": \"69b26845898aa7f4961a11c5\"\n                    },\n                    {\n                        \"type\": \"PACKAGE\",\n                        \"url\": \"https://github.com/huggingface/transformers\",\n                        \"_id\": \"69b26845898aa7f4961a11c6\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://huntr.com/bounties/25282953-5827-4384-bb6f-5790d275721b\",\n                        \"_id\": \"69b26845898aa7f4961a11c7\"\n                    },\n                    {\n                        \"type\": \"EVIDENCE\",\n                        \"url\": \"https://huntr.com/bounties/25282953-5827-4384-bb6f-5790d275721b\",\n                        \"_id\": \"6903b7f7fd6fa668689dceca\"\n                    },\n                    {\n                        \"type\": \"FIX\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/ebbe9b12dd75b69f92100d684c47f923ee262a93\",\n                        \"_id\": \"6903b7f7fd6fa668689dcecb\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/ebbe9b12dd75b69f92100d684c47f923ee262a93\",\n                        \"_id\": \"6895a0ccc6527a2d963402e2\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://huntr.com/bounties/25282953-5827-4384-bb6f-5790d275721b\",\n                        \"_id\": \"6895a0ccc6527a2d963402e3\"\n                    }\n                ],\n                \"sourceIdentifier\": null,\n                \"sources\": [\n                    \"OSV\",\n                    \"NVD\"\n                ],\n                \"status\": \"PUBLISHED\",\n                \"ticketIds\": null,\n                \"componentVulnerabilities\": [\n                    {\n                        \"_id\": \"69b1b5c8006efb8786cc7c9d\",\n                        \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                        \"cveId\": \"CVE-2025-3933\",\n                        \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                        \"__v\": 0,\n                        \"dateCreated\": \"2026-03-11T18:34:48.548Z\",\n                        \"dateModified\": \"2026-03-11T18:34:48.548Z\",\n                        \"datePublished\": null,\n                        \"epssScore\": null,\n                        \"explanations\": [\n                            \"No explanations available\"\n                        ],\n                        \"jobNames\": [\n                            \"job-vulnerability-match\"\n                        ],\n                        \"packageUrl\": null,\n                        \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                        \"packageVersion\": \"4.51.3\",\n                        \"preferredScore\": null,\n                        \"preferredSeverity\": null,\n                        \"priorityScore\": null,\n                        \"recommendedAction\": \"accept\",\n                        \"severityLabel\": null,\n                        \"severityScore\": null,\n                        \"sourceLinks\": [\n                            \"https://osv.dev/vulnerability/CVE-2025-3933\"\n                        ],\n                        \"sources\": [\n                            \"OSV\"\n                        ],\n                        \"vulnerabilityId\": null,\n                        \"assetComponents\": [\n                            {\n                                \"_id\": \"69b0e24b006efb8786c96426\",\n                                \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                                \"organizationAssetId\": \"69b0e24a006efb8786c96381\",\n                                \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                                \"__v\": 0,\n                                \"commitVersionHash\": null,\n                                \"componentFullyQualifiedName\": \"transformers\",\n                                \"componentPackageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"componentPackageVersion\": \"4.51.3\",\n                                \"countVulnerabilities\": {\n                                    \"careAbout\": 0,\n                                    \"critical\": 0,\n                                    \"high\": 2,\n                                    \"medium\": 3,\n                                    \"low\": 1,\n                                    \"info\": 0,\n                                    \"total\": 6,\n                                    \"mitigate\": 0,\n                                    \"monitor\": 2,\n                                    \"accept\": 4,\n                                    \"inKEV\": 0,\n                                    \"inKEVPreviously\": 0,\n                                    \"_id\": \"69b0e24ccae46d8137f11813\"\n                                },\n                                \"cpes\": [],\n                                \"cveIds\": {},\n                                \"dateCreated\": \"2026-03-11T03:32:27.461Z\",\n                                \"dateModified\": \"2026-03-11T03:32:28.937Z\",\n                                \"ecosystem\": \"pypi\",\n                                \"firstCpeParts\": null,\n                                \"fullyQualifiedName\": \"transformers\",\n                                \"hasNamespace\": false,\n                                \"isVulnerable\": true,\n                                \"licenses\": [\n                                    {\n                                        \"id\": \"Apache-1.1\",\n                                        \"name\": \"Apache-1.1\",\n                                        \"text\": \"(Apache-1.1)\",\n                                        \"url\": null,\n                                        \"acknowledgement\": null,\n                                        \"licensing\": null,\n                                        \"properties\": null,\n                                        \"matchedId\": \"6674c0d37aa4245b3eb4592e\",\n                                        \"_id\": \"69b0e24b62e4c36e9bfee83c\"\n                                    }\n                                ],\n                                \"mimeType\": null,\n                                \"name\": \"transformers\",\n                                \"packageSource\": null,\n                                \"packageSourceVersion\": null,\n                                \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"packageVersion\": null,\n                                \"purlParts\": {\n                                    \"ecosystem\": \"pypi\",\n                                    \"namespace\": \"\",\n                                    \"name\": \"transformers\",\n                                    \"version\": \"4.51.3\",\n                                    \"subpath\": \"\",\n                                    \"distro\": null,\n                                    \"distroVersion\": null,\n                                    \"source\": null,\n                                    \"sourceVersion\": null,\n                                    \"epoch\": null,\n                                    \"rawPurl\": \"pkg:pypi/transformers@4.51.3\",\n                                    \"vendorName\": \"\",\n                                    \"vendorNameAliases\": [],\n                                    \"validation\": {\n                                        \"isValid\": false,\n                                        \"validationErrors\": [\n                                            \"PURL does not follow general structure. See PURL specification to ensure your package URLs are valid.\"\n                                        ]\n                                    },\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83d\"\n                                },\n                                \"resolvedCpes\": null,\n                                \"riskScore\": \"low\",\n                                \"supplier\": {\n                                    \"text\": [],\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83b\",\n                                    \"contact\": []\n                                },\n                                \"vendorName\": []\n                            }\n                        ]\n                    }\n                ],\n                \"recommendationScore\": 1,\n                \"triageScore\": 7,\n                \"severity\": \"MEDIUM\",\n                \"cvssScore\": 5.3,\n                \"affectedComponents\": [\n                    {\n                        \"id\": \"69b0e24b006efb8786c963d4\",\n                        \"affectedComponentName\": \"pkg:pypi/transformers@4.51.3\"\n                    }\n                ]\n            },\n            {\n                \"_id\": \"68944f257fd0954c3850c27a\",\n                \"cveId\": \"CVE-2025-5197\",\n                \"__v\": 0,\n                \"aliasIds\": [],\n                \"aliases\": [\n                    \"CVE-2025-5197\",\n                    \"GHSA-9356-575X-2W9M\"\n                ],\n                \"credits\": [],\n                \"cvss2BaseScore\": null,\n                \"cvss2BaseSeverity\": null,\n                \"cvss2Data\": {\n                    \"_id\": \"68f881a74756e2091a6f175d\"\n                },\n                \"cvss3BaseScore\": 5.3,\n                \"cvss3BaseSeverity\": \"MEDIUM\",\n                \"cvss3Data\": {\n                    \"version\": \"3.0\",\n                    \"vectorString\": \"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\n                    \"attackComplexity\": \"LOW\",\n                    \"privilegesRequired\": \"NONE\",\n                    \"userInteraction\": \"NONE\",\n                    \"scope\": \"UNCHANGED\",\n                    \"confidentialityImpact\": \"NONE\",\n                    \"integrityImpact\": \"NONE\",\n                    \"availabilityImpact\": \"LOW\",\n                    \"baseScore\": 5.3,\n                    \"baseSeverity\": \"MEDIUM\",\n                    \"_id\": \"68f881a74756e2091a6f175e\"\n                },\n                \"cvssData\": [\n                    {\n                        \"version\": \"3.0\",\n                        \"vector\": \"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\n                        \"score\": 5.3,\n                        \"severity\": \"MEDIUM\",\n                        \"source\": \"CNA\",\n                        \"_id\": \"68f881a74756e2091a6f1760\"\n                    },\n                    {\n                        \"version\": \"3.0\",\n                        \"vector\": \"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\n                        \"score\": 5.3,\n                        \"severity\": \"MEDIUM\",\n                        \"source\": \"OSV\",\n                        \"_id\": \"6903b7f9fd6fa668689e12cb\"\n                    }\n                ],\n                \"cvssDataAddedTimestamp\": \"2025-09-19T17:29:21.186Z\",\n                \"dateCreated\": \"2025-08-07T07:00:51.868Z\",\n                \"dateModified\": \"2026-03-12T07:50:45.595Z\",\n                \"description\": \"A Regular Expression Denial of Service (ReDoS) vulnerability exists in the Hugging Face Transformers library, specifically in the `convert_tf_weight_name_to_pt_weight_name()` function. This function, responsible for converting TensorFlow weight names to PyTorch format, uses a regex pattern `/[^/]*___([^/]*)/` that can be exploited to cause excessive CPU consumption through crafted input strings due to catastrophic backtracking. The vulnerability affects versions up to 4.51.3 and is fixed in version 4.53.0. This issue can lead to service disruption, resource exhaustion, and potential API service vulnerabilities, impacting model conversion processes between TensorFlow and PyTorch formats.\",\n                \"epssPercentile\": 0.10446,\n                \"epssScore\": 0.00036,\n                \"kevData\": {\n                    \"_id\": \"68944f24c6527a2d963323cb\"\n                },\n                \"lastCheckedMitigation\": null,\n                \"listingLastModified\": \"2025-10-21T16:46:13.380Z\",\n                \"mitigation\": [\n                    {\n                        \"pkg:pypi/transformers\": {\n                            \"fixedVersions\": [\n                                \"4.53.0\"\n                            ],\n                            \"lastAffectedVersions\": []\n                        }\n                    }\n                ],\n                \"mitigationNotes\": [],\n                \"nvdMatchingChecksum\": \"93aa4e9c9f43a73b99573995a1e7b0e31d502eb0edb23fdf5e91c09836d1cd5a\",\n                \"osvMatchingChecksum\": {\n                    \"GHSA-9356-575X-2W9M\": \"fcdf1ae29d669205e8869ca7baea4745986e36d0f4d94e2cd8feda6a51df2e24\",\n                    \"CVE-2025-5197\": \"b9e4c7efbc6be2792a9c26d63708769c5b0f5b34313d5306eb07486f99785936\"\n                },\n                \"preferredScore\": 5.3,\n                \"preferredSeverity\": \"MEDIUM\",\n                \"priorityScore\": 215405,\n                \"publishDate\": \"2025-08-06T12:15:26.000Z\",\n                \"recommendedAction\": \"accept\",\n                \"references\": [\n                    {\n                        \"type\": \"ADVISORY\",\n                        \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2025-5197\",\n                        \"_id\": \"69b2684a898aa7f4961ac984\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/701caef704e356dc2f9331cc3fd5df0eccb4720a\",\n                        \"_id\": \"69b2684a898aa7f4961ac985\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/944b56000be5e9b61af8301aa340838770ad8a0b\",\n                        \"_id\": \"69b2684a898aa7f4961ac986\"\n                    },\n                    {\n                        \"type\": \"PACKAGE\",\n                        \"url\": \"https://github.com/huggingface/transformers\",\n                        \"_id\": \"69b2684a898aa7f4961ac987\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://huntr.com/bounties/3f8b3fd0-166b-46e7-b60f-60dd9d2678bf\",\n                        \"_id\": \"69b2684a898aa7f4961ac988\"\n                    },\n                    {\n                        \"type\": \"REPORT\",\n                        \"url\": \"https://huntr.com/bounties/3f8b3fd0-166b-46e7-b60f-60dd9d2678bf\",\n                        \"_id\": \"6903b7f9fd6fa668689e12cc\"\n                    },\n                    {\n                        \"type\": \"FIX\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/944b56000be5e9b61af8301aa340838770ad8a0b\",\n                        \"_id\": \"6903b7f9fd6fa668689e12cd\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/944b56000be5e9b61af8301aa340838770ad8a0b\",\n                        \"_id\": \"68f881a74756e2091a6f1761\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://huntr.com/bounties/3f8b3fd0-166b-46e7-b60f-60dd9d2678bf\",\n                        \"_id\": \"68f881a74756e2091a6f1762\"\n                    }\n                ],\n                \"sourceIdentifier\": null,\n                \"sources\": [\n                    \"OSV\",\n                    \"NVD\"\n                ],\n                \"status\": \"PUBLISHED\",\n                \"ticketIds\": null,\n                \"componentVulnerabilities\": [\n                    {\n                        \"_id\": \"69b1b5c8006efb8786cc7ca1\",\n                        \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                        \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                        \"cveId\": \"CVE-2025-5197\",\n                        \"__v\": 0,\n                        \"dateCreated\": \"2026-03-11T18:34:48.548Z\",\n                        \"dateModified\": \"2026-03-11T18:34:48.548Z\",\n                        \"datePublished\": null,\n                        \"epssScore\": null,\n                        \"explanations\": [\n                            \"No explanations available\"\n                        ],\n                        \"jobNames\": [\n                            \"job-vulnerability-match\"\n                        ],\n                        \"packageUrl\": null,\n                        \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                        \"packageVersion\": \"4.51.3\",\n                        \"preferredScore\": null,\n                        \"preferredSeverity\": null,\n                        \"priorityScore\": null,\n                        \"recommendedAction\": \"accept\",\n                        \"severityLabel\": null,\n                        \"severityScore\": null,\n                        \"sourceLinks\": [\n                            \"https://osv.dev/vulnerability/CVE-2025-5197\"\n                        ],\n                        \"sources\": [\n                            \"OSV\"\n                        ],\n                        \"vulnerabilityId\": null,\n                        \"assetComponents\": [\n                            {\n                                \"_id\": \"69b0e24b006efb8786c96426\",\n                                \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                                \"organizationAssetId\": \"69b0e24a006efb8786c96381\",\n                                \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                                \"__v\": 0,\n                                \"commitVersionHash\": null,\n                                \"componentFullyQualifiedName\": \"transformers\",\n                                \"componentPackageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"componentPackageVersion\": \"4.51.3\",\n                                \"countVulnerabilities\": {\n                                    \"careAbout\": 0,\n                                    \"critical\": 0,\n                                    \"high\": 2,\n                                    \"medium\": 3,\n                                    \"low\": 1,\n                                    \"info\": 0,\n                                    \"total\": 6,\n                                    \"mitigate\": 0,\n                                    \"monitor\": 2,\n                                    \"accept\": 4,\n                                    \"inKEV\": 0,\n                                    \"inKEVPreviously\": 0,\n                                    \"_id\": \"69b0e24ccae46d8137f11813\"\n                                },\n                                \"cpes\": [],\n                                \"cveIds\": {},\n                                \"dateCreated\": \"2026-03-11T03:32:27.461Z\",\n                                \"dateModified\": \"2026-03-11T03:32:28.937Z\",\n                                \"ecosystem\": \"pypi\",\n                                \"firstCpeParts\": null,\n                                \"fullyQualifiedName\": \"transformers\",\n                                \"hasNamespace\": false,\n                                \"isVulnerable\": true,\n                                \"licenses\": [\n                                    {\n                                        \"id\": \"Apache-1.1\",\n                                        \"name\": \"Apache-1.1\",\n                                        \"text\": \"(Apache-1.1)\",\n                                        \"url\": null,\n                                        \"acknowledgement\": null,\n                                        \"licensing\": null,\n                                        \"properties\": null,\n                                        \"matchedId\": \"6674c0d37aa4245b3eb4592e\",\n                                        \"_id\": \"69b0e24b62e4c36e9bfee83c\"\n                                    }\n                                ],\n                                \"mimeType\": null,\n                                \"name\": \"transformers\",\n                                \"packageSource\": null,\n                                \"packageSourceVersion\": null,\n                                \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"packageVersion\": null,\n                                \"purlParts\": {\n                                    \"ecosystem\": \"pypi\",\n                                    \"namespace\": \"\",\n                                    \"name\": \"transformers\",\n                                    \"version\": \"4.51.3\",\n                                    \"subpath\": \"\",\n                                    \"distro\": null,\n                                    \"distroVersion\": null,\n                                    \"source\": null,\n                                    \"sourceVersion\": null,\n                                    \"epoch\": null,\n                                    \"rawPurl\": \"pkg:pypi/transformers@4.51.3\",\n                                    \"vendorName\": \"\",\n                                    \"vendorNameAliases\": [],\n                                    \"validation\": {\n                                        \"isValid\": false,\n                                        \"validationErrors\": [\n                                            \"PURL does not follow general structure. See PURL specification to ensure your package URLs are valid.\"\n                                        ]\n                                    },\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83d\"\n                                },\n                                \"resolvedCpes\": null,\n                                \"riskScore\": \"low\",\n                                \"supplier\": {\n                                    \"text\": [],\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83b\",\n                                    \"contact\": []\n                                },\n                                \"vendorName\": []\n                            }\n                        ]\n                    }\n                ],\n                \"recommendationScore\": 1,\n                \"triageScore\": 7,\n                \"severity\": \"MEDIUM\",\n                \"cvssScore\": 5.3,\n                \"affectedComponents\": [\n                    {\n                        \"id\": \"69b0e24b006efb8786c963d4\",\n                        \"affectedComponentName\": \"pkg:pypi/transformers@4.51.3\"\n                    }\n                ]\n            },\n            {\n                \"_id\": \"68c7b989d46ad00620f46838\",\n                \"cveId\": \"CVE-2025-6051\",\n                \"__v\": 0,\n                \"aliasIds\": [],\n                \"aliases\": [\n                    \"CVE-2025-6051\",\n                    \"GHSA-RCV9-QM8P-9P6J\"\n                ],\n                \"credits\": [],\n                \"cvss2BaseScore\": null,\n                \"cvss2BaseSeverity\": null,\n                \"cvss2Data\": {\n                    \"_id\": \"68f881a74756e2091a6f1877\"\n                },\n                \"cvss3BaseScore\": 5.3,\n                \"cvss3BaseSeverity\": \"MEDIUM\",\n                \"cvss3Data\": {\n                    \"version\": \"3.0\",\n                    \"vectorString\": \"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\n                    \"attackComplexity\": \"LOW\",\n                    \"privilegesRequired\": \"NONE\",\n                    \"userInteraction\": \"NONE\",\n                    \"scope\": \"UNCHANGED\",\n                    \"confidentialityImpact\": \"NONE\",\n                    \"integrityImpact\": \"NONE\",\n                    \"availabilityImpact\": \"LOW\",\n                    \"baseScore\": 5.3,\n                    \"baseSeverity\": \"MEDIUM\",\n                    \"_id\": \"68f881a74756e2091a6f1878\"\n                },\n                \"cvssData\": [\n                    {\n                        \"version\": \"3.0\",\n                        \"vector\": \"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\n                        \"score\": 5.3,\n                        \"severity\": \"MEDIUM\",\n                        \"source\": \"CNA\",\n                        \"_id\": \"68f881a74756e2091a6f187a\"\n                    },\n                    {\n                        \"version\": \"3.0\",\n                        \"vector\": \"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\n                        \"score\": 5.3,\n                        \"severity\": \"MEDIUM\",\n                        \"source\": \"OSV\",\n                        \"_id\": \"6903b7fbfd6fa668689e4f7d\"\n                    }\n                ],\n                \"cvssDataAddedTimestamp\": \"2025-09-19T17:30:00.654Z\",\n                \"dateCreated\": \"2025-09-15T07:00:24.948Z\",\n                \"dateModified\": \"2026-03-12T07:50:56.822Z\",\n                \"description\": \"A Regular Expression Denial of Service (ReDoS) vulnerability was discovered in the Hugging Face Transformers library, specifically within the `normalize_numbers()` method of the `EnglishNormalizer` class. This vulnerability affects versions up to 4.52.4 and is fixed in version 4.53.0. The issue arises from the method's handling of numeric strings, which can be exploited using crafted input strings containing long sequences of digits, leading to excessive CPU consumption. This vulnerability impacts text-to-speech and number normalization tasks, potentially causing service disruption, resource exhaustion, and API vulnerabilities.\",\n                \"epssPercentile\": 0.09537,\n                \"epssScore\": 0.00034,\n                \"kevData\": {\n                    \"_id\": \"68c7b98856727c92cbed2173\"\n                },\n                \"lastCheckedMitigation\": null,\n                \"listingLastModified\": \"2025-10-21T14:16:24.770Z\",\n                \"mitigation\": [\n                    {\n                        \"pkg:pypi/transformers\": {\n                            \"fixedVersions\": [\n                                \"4.53.0\"\n                            ],\n                            \"lastAffectedVersions\": []\n                        }\n                    }\n                ],\n                \"mitigationNotes\": [],\n                \"nvdMatchingChecksum\": \"a15ac77eefbc693b156853177934d3e591397ae665145dd78a22f2219fa92c92\",\n                \"osvMatchingChecksum\": {\n                    \"CVE-2025-6051\": \"b9e4c7efbc6be2792a9c26d63708769c5b0f5b34313d5306eb07486f99785936\",\n                    \"GHSA-RCV9-QM8P-9P6J\": \"ccf210d082a5c0928c86453202cb80b5146d768614e7d385160f5f672a8e65a9\"\n                },\n                \"preferredScore\": 5.3,\n                \"preferredSeverity\": \"MEDIUM\",\n                \"priorityScore\": 215396,\n                \"publishDate\": \"2025-09-14T17:15:34.000Z\",\n                \"recommendedAction\": \"accept\",\n                \"references\": [\n                    {\n                        \"type\": \"ADVISORY\",\n                        \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2025-6051\",\n                        \"_id\": \"69b2684e898aa7f4961b6497\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/pull/38844\",\n                        \"_id\": \"69b2684e898aa7f4961b6498\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/54a02160eb030da9be18231c77791f2eb3a52216\",\n                        \"_id\": \"69b2684e898aa7f4961b6499\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/ba8eaba9865618253f997784aa565b96206426f0\",\n                        \"_id\": \"69b2684e898aa7f4961b649a\"\n                    },\n                    {\n                        \"type\": \"PACKAGE\",\n                        \"url\": \"https://github.com/huggingface/transformers\",\n                        \"_id\": \"69b2684e898aa7f4961b649b\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://huntr.com/bounties/af929523-7b59-418a-bf55-301830b2ac9d\",\n                        \"_id\": \"69b2684e898aa7f4961b649c\"\n                    },\n                    {\n                        \"type\": \"REPORT\",\n                        \"url\": \"https://huntr.com/bounties/af929523-7b59-418a-bf55-301830b2ac9d\",\n                        \"_id\": \"6903b7fbfd6fa668689e4f7e\"\n                    },\n                    {\n                        \"type\": \"FIX\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/ba8eaba9865618253f997784aa565b96206426f0\",\n                        \"_id\": \"6903b7fbfd6fa668689e4f7f\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/ba8eaba9865618253f997784aa565b96206426f0\",\n                        \"_id\": \"68f881a74756e2091a6f187b\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://huntr.com/bounties/af929523-7b59-418a-bf55-301830b2ac9d\",\n                        \"_id\": \"68f881a74756e2091a6f187c\"\n                    }\n                ],\n                \"sourceIdentifier\": null,\n                \"sources\": [\n                    \"OSV\",\n                    \"NVD\"\n                ],\n                \"status\": \"PUBLISHED\",\n                \"ticketIds\": null,\n                \"componentVulnerabilities\": [\n                    {\n                        \"_id\": \"69b1b5c8006efb8786cc7ca3\",\n                        \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                        \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                        \"cveId\": \"CVE-2025-6051\",\n                        \"__v\": 0,\n                        \"dateCreated\": \"2026-03-11T18:34:48.548Z\",\n                        \"dateModified\": \"2026-03-11T18:34:48.548Z\",\n                        \"datePublished\": null,\n                        \"epssScore\": null,\n                        \"explanations\": [\n                            \"No explanations available\"\n                        ],\n                        \"jobNames\": [\n                            \"job-vulnerability-match\"\n                        ],\n                        \"packageUrl\": null,\n                        \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                        \"packageVersion\": \"4.51.3\",\n                        \"preferredScore\": null,\n                        \"preferredSeverity\": null,\n                        \"priorityScore\": null,\n                        \"recommendedAction\": \"accept\",\n                        \"severityLabel\": null,\n                        \"severityScore\": null,\n                        \"sourceLinks\": [\n                            \"https://osv.dev/vulnerability/CVE-2025-6051\"\n                        ],\n                        \"sources\": [\n                            \"OSV\"\n                        ],\n                        \"vulnerabilityId\": null,\n                        \"assetComponents\": [\n                            {\n                                \"_id\": \"69b0e24b006efb8786c96426\",\n                                \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                                \"organizationAssetId\": \"69b0e24a006efb8786c96381\",\n                                \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                                \"__v\": 0,\n                                \"commitVersionHash\": null,\n                                \"componentFullyQualifiedName\": \"transformers\",\n                                \"componentPackageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"componentPackageVersion\": \"4.51.3\",\n                                \"countVulnerabilities\": {\n                                    \"careAbout\": 0,\n                                    \"critical\": 0,\n                                    \"high\": 2,\n                                    \"medium\": 3,\n                                    \"low\": 1,\n                                    \"info\": 0,\n                                    \"total\": 6,\n                                    \"mitigate\": 0,\n                                    \"monitor\": 2,\n                                    \"accept\": 4,\n                                    \"inKEV\": 0,\n                                    \"inKEVPreviously\": 0,\n                                    \"_id\": \"69b0e24ccae46d8137f11813\"\n                                },\n                                \"cpes\": [],\n                                \"cveIds\": {},\n                                \"dateCreated\": \"2026-03-11T03:32:27.461Z\",\n                                \"dateModified\": \"2026-03-11T03:32:28.937Z\",\n                                \"ecosystem\": \"pypi\",\n                                \"firstCpeParts\": null,\n                                \"fullyQualifiedName\": \"transformers\",\n                                \"hasNamespace\": false,\n                                \"isVulnerable\": true,\n                                \"licenses\": [\n                                    {\n                                        \"id\": \"Apache-1.1\",\n                                        \"name\": \"Apache-1.1\",\n                                        \"text\": \"(Apache-1.1)\",\n                                        \"url\": null,\n                                        \"acknowledgement\": null,\n                                        \"licensing\": null,\n                                        \"properties\": null,\n                                        \"matchedId\": \"6674c0d37aa4245b3eb4592e\",\n                                        \"_id\": \"69b0e24b62e4c36e9bfee83c\"\n                                    }\n                                ],\n                                \"mimeType\": null,\n                                \"name\": \"transformers\",\n                                \"packageSource\": null,\n                                \"packageSourceVersion\": null,\n                                \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"packageVersion\": null,\n                                \"purlParts\": {\n                                    \"ecosystem\": \"pypi\",\n                                    \"namespace\": \"\",\n                                    \"name\": \"transformers\",\n                                    \"version\": \"4.51.3\",\n                                    \"subpath\": \"\",\n                                    \"distro\": null,\n                                    \"distroVersion\": null,\n                                    \"source\": null,\n                                    \"sourceVersion\": null,\n                                    \"epoch\": null,\n                                    \"rawPurl\": \"pkg:pypi/transformers@4.51.3\",\n                                    \"vendorName\": \"\",\n                                    \"vendorNameAliases\": [],\n                                    \"validation\": {\n                                        \"isValid\": false,\n                                        \"validationErrors\": [\n                                            \"PURL does not follow general structure. See PURL specification to ensure your package URLs are valid.\"\n                                        ]\n                                    },\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83d\"\n                                },\n                                \"resolvedCpes\": null,\n                                \"riskScore\": \"low\",\n                                \"supplier\": {\n                                    \"text\": [],\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83b\",\n                                    \"contact\": []\n                                },\n                                \"vendorName\": []\n                            }\n                        ]\n                    }\n                ],\n                \"recommendationScore\": 1,\n                \"triageScore\": 7,\n                \"severity\": \"MEDIUM\",\n                \"cvssScore\": 5.3,\n                \"affectedComponents\": [\n                    {\n                        \"id\": \"69b0e24b006efb8786c963d4\",\n                        \"affectedComponentName\": \"pkg:pypi/transformers@4.51.3\"\n                    }\n                ]\n            },\n            {\n                \"_id\": \"68c5168ca42dd0af985c5ae4\",\n                \"cveId\": \"CVE-2025-6638\",\n                \"__v\": 0,\n                \"aliasIds\": [],\n                \"aliases\": [\n                    \"CVE-2025-6638\",\n                    \"GHSA-59P9-H35M-WG4G\"\n                ],\n                \"credits\": [],\n                \"cvss2BaseScore\": null,\n                \"cvss2BaseSeverity\": null,\n                \"cvss2Data\": {\n                    \"_id\": \"68f881a74756e2091a6f186d\"\n                },\n                \"cvss3BaseScore\": 7.5,\n                \"cvss3BaseSeverity\": \"HIGH\",\n                \"cvss3Data\": {\n                    \"version\": \"3.1\",\n                    \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n                    \"attackComplexity\": \"LOW\",\n                    \"privilegesRequired\": \"NONE\",\n                    \"userInteraction\": \"NONE\",\n                    \"scope\": \"UNCHANGED\",\n                    \"confidentialityImpact\": \"NONE\",\n                    \"integrityImpact\": \"NONE\",\n                    \"availabilityImpact\": \"HIGH\",\n                    \"baseScore\": 7.5,\n                    \"baseSeverity\": \"HIGH\",\n                    \"_id\": \"68f881a74756e2091a6f186e\"\n                },\n                \"cvssData\": [\n                    {\n                        \"version\": \"3.1\",\n                        \"vector\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n                        \"score\": 7.5,\n                        \"severity\": \"HIGH\",\n                        \"source\": \"NVD\",\n                        \"_id\": \"68f881a74756e2091a6f1870\"\n                    },\n                    {\n                        \"version\": \"3.1\",\n                        \"vector\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n                        \"score\": 7.5,\n                        \"severity\": \"HIGH\",\n                        \"source\": \"OSV\",\n                        \"_id\": \"6903b7fbfd6fa668689e5fbb\"\n                    }\n                ],\n                \"cvssDataAddedTimestamp\": \"2025-09-19T17:30:00.651Z\",\n                \"dateCreated\": \"2025-09-13T07:00:26.871Z\",\n                \"dateModified\": \"2026-03-12T07:50:56.822Z\",\n                \"description\": \"A Regular Expression Denial of Service (ReDoS) vulnerability was discovered in the Hugging Face Transformers library, specifically affecting the MarianTokenizer's `remove_language_code()` method. This vulnerability is present in version 4.52.4 and has been fixed in version 4.53.0. The issue arises from inefficient regex processing, which can be exploited by crafted input strings containing malformed language code patterns, leading to excessive CPU consumption and potential denial of service.\",\n                \"epssPercentile\": 0.08903,\n                \"epssScore\": 0.00032,\n                \"kevData\": {\n                    \"_id\": \"68c5168b56727c92cbed1c99\"\n                },\n                \"lastCheckedMitigation\": null,\n                \"listingLastModified\": \"2025-10-21T13:33:08.580Z\",\n                \"mitigation\": [\n                    {\n                        \"pkg:pypi/transformers\": {\n                            \"fixedVersions\": [\n                                \"4.53.0\"\n                            ],\n                            \"lastAffectedVersions\": []\n                        }\n                    }\n                ],\n                \"mitigationNotes\": [],\n                \"nvdMatchingChecksum\": \"7ea4b30509b0542b18d458724e5b346393d1c10c581e30856bb1a82ed80b5c32\",\n                \"osvMatchingChecksum\": {\n                    \"CVE-2025-6638\": \"b9e4c7efbc6be2792a9c26d63708769c5b0f5b34313d5306eb07486f99785936\",\n                    \"GHSA-59P9-H35M-WG4G\": \"a2489fe2cbc142aa342e7c2b7ead42447e075fb436fba8989bb6b4c00ebe3cc5\"\n                },\n                \"preferredScore\": 7.5,\n                \"preferredSeverity\": \"HIGH\",\n                \"priorityScore\": 317590,\n                \"publishDate\": \"2025-09-12T11:15:31.000Z\",\n                \"recommendedAction\": \"monitor\",\n                \"references\": [\n                    {\n                        \"type\": \"ADVISORY\",\n                        \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2025-6638\",\n                        \"_id\": \"69b26846898aa7f4961a3560\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/47c34fba5c303576560cb29767efb452ff12b8be\",\n                        \"_id\": \"69b26846898aa7f4961a3561\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/d37f7517972f67e3f2194c000ed0f87f064e5099\",\n                        \"_id\": \"69b26846898aa7f4961a3562\"\n                    },\n                    {\n                        \"type\": \"PACKAGE\",\n                        \"url\": \"https://github.com/huggingface/transformers\",\n                        \"_id\": \"69b26846898aa7f4961a3563\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://huntr.com/bounties/6a6c933f-9ce8-4ded-8b3b-2c1444c61f36\",\n                        \"_id\": \"69b26846898aa7f4961a3564\"\n                    },\n                    {\n                        \"type\": \"EVIDENCE\",\n                        \"url\": \"https://huntr.com/bounties/6a6c933f-9ce8-4ded-8b3b-2c1444c61f36\",\n                        \"_id\": \"6903b7fbfd6fa668689e5fbc\"\n                    },\n                    {\n                        \"type\": \"FIX\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/47c34fba5c303576560cb29767efb452ff12b8be\",\n                        \"_id\": \"6903b7fbfd6fa668689e5fbd\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/47c34fba5c303576560cb29767efb452ff12b8be\",\n                        \"_id\": \"68f881a74756e2091a6f1871\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://huntr.com/bounties/6a6c933f-9ce8-4ded-8b3b-2c1444c61f36\",\n                        \"_id\": \"68f881a74756e2091a6f1872\"\n                    }\n                ],\n                \"sourceIdentifier\": null,\n                \"sources\": [\n                    \"OSV\",\n                    \"NVD\"\n                ],\n                \"status\": \"PUBLISHED\",\n                \"ticketIds\": null,\n                \"componentVulnerabilities\": [\n                    {\n                        \"_id\": \"69b1b5c8006efb8786cc7ca0\",\n                        \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                        \"cveId\": \"CVE-2025-6638\",\n                        \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                        \"__v\": 0,\n                        \"dateCreated\": \"2026-03-11T18:34:48.548Z\",\n                        \"dateModified\": \"2026-03-12T07:50:59.154Z\",\n                        \"datePublished\": null,\n                        \"epssScore\": 0.00032,\n                        \"explanations\": [\n                            \"No explanations available\"\n                        ],\n                        \"jobNames\": [\n                            \"job-vulnerability-match\"\n                        ],\n                        \"packageUrl\": null,\n                        \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                        \"packageVersion\": \"4.51.3\",\n                        \"preferredScore\": null,\n                        \"preferredSeverity\": null,\n                        \"priorityScore\": 317590,\n                        \"recommendedAction\": \"monitor\",\n                        \"severityLabel\": null,\n                        \"severityScore\": null,\n                        \"sourceLinks\": [\n                            \"https://osv.dev/vulnerability/CVE-2025-6638\"\n                        ],\n                        \"sources\": [\n                            \"OSV\"\n                        ],\n                        \"vulnerabilityId\": null,\n                        \"assetComponents\": [\n                            {\n                                \"_id\": \"69b0e24b006efb8786c96426\",\n                                \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                                \"organizationAssetId\": \"69b0e24a006efb8786c96381\",\n                                \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                                \"__v\": 0,\n                                \"commitVersionHash\": null,\n                                \"componentFullyQualifiedName\": \"transformers\",\n                                \"componentPackageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"componentPackageVersion\": \"4.51.3\",\n                                \"countVulnerabilities\": {\n                                    \"careAbout\": 0,\n                                    \"critical\": 0,\n                                    \"high\": 2,\n                                    \"medium\": 3,\n                                    \"low\": 1,\n                                    \"info\": 0,\n                                    \"total\": 6,\n                                    \"mitigate\": 0,\n                                    \"monitor\": 2,\n                                    \"accept\": 4,\n                                    \"inKEV\": 0,\n                                    \"inKEVPreviously\": 0,\n                                    \"_id\": \"69b0e24ccae46d8137f11813\"\n                                },\n                                \"cpes\": [],\n                                \"cveIds\": {},\n                                \"dateCreated\": \"2026-03-11T03:32:27.461Z\",\n                                \"dateModified\": \"2026-03-11T03:32:28.937Z\",\n                                \"ecosystem\": \"pypi\",\n                                \"firstCpeParts\": null,\n                                \"fullyQualifiedName\": \"transformers\",\n                                \"hasNamespace\": false,\n                                \"isVulnerable\": true,\n                                \"licenses\": [\n                                    {\n                                        \"id\": \"Apache-1.1\",\n                                        \"name\": \"Apache-1.1\",\n                                        \"text\": \"(Apache-1.1)\",\n                                        \"url\": null,\n                                        \"acknowledgement\": null,\n                                        \"licensing\": null,\n                                        \"properties\": null,\n                                        \"matchedId\": \"6674c0d37aa4245b3eb4592e\",\n                                        \"_id\": \"69b0e24b62e4c36e9bfee83c\"\n                                    }\n                                ],\n                                \"mimeType\": null,\n                                \"name\": \"transformers\",\n                                \"packageSource\": null,\n                                \"packageSourceVersion\": null,\n                                \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"packageVersion\": null,\n                                \"purlParts\": {\n                                    \"ecosystem\": \"pypi\",\n                                    \"namespace\": \"\",\n                                    \"name\": \"transformers\",\n                                    \"version\": \"4.51.3\",\n                                    \"subpath\": \"\",\n                                    \"distro\": null,\n                                    \"distroVersion\": null,\n                                    \"source\": null,\n                                    \"sourceVersion\": null,\n                                    \"epoch\": null,\n                                    \"rawPurl\": \"pkg:pypi/transformers@4.51.3\",\n                                    \"vendorName\": \"\",\n                                    \"vendorNameAliases\": [],\n                                    \"validation\": {\n                                        \"isValid\": false,\n                                        \"validationErrors\": [\n                                            \"PURL does not follow general structure. See PURL specification to ensure your package URLs are valid.\"\n                                        ]\n                                    },\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83d\"\n                                },\n                                \"resolvedCpes\": null,\n                                \"riskScore\": \"low\",\n                                \"supplier\": {\n                                    \"text\": [],\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83b\",\n                                    \"contact\": []\n                                },\n                                \"vendorName\": []\n                            }\n                        ]\n                    }\n                ],\n                \"recommendationScore\": 2,\n                \"triageScore\": 7,\n                \"severity\": \"HIGH\",\n                \"cvssScore\": 7.5,\n                \"affectedComponents\": [\n                    {\n                        \"id\": \"69b0e24b006efb8786c963d4\",\n                        \"affectedComponentName\": \"pkg:pypi/transformers@4.51.3\"\n                    }\n                ]\n            },\n            {\n                \"_id\": \"68d397192c77f8d9ebb3c0b2\",\n                \"cveId\": \"CVE-2025-6921\",\n                \"__v\": 0,\n                \"aliasIds\": [],\n                \"aliases\": [\n                    \"CVE-2025-6921\",\n                    \"GHSA-4W7R-H757-3R74\"\n                ],\n                \"credits\": [],\n                \"cvss2BaseScore\": null,\n                \"cvss2BaseSeverity\": null,\n                \"cvss2Data\": {\n                    \"_id\": \"68ea009d4756e2091a6e0398\"\n                },\n                \"cvss3BaseScore\": 7.5,\n                \"cvss3BaseSeverity\": \"HIGH\",\n                \"cvss3Data\": {\n                    \"version\": \"3.1\",\n                    \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n                    \"attackComplexity\": \"LOW\",\n                    \"privilegesRequired\": \"NONE\",\n                    \"userInteraction\": \"NONE\",\n                    \"scope\": \"UNCHANGED\",\n                    \"confidentialityImpact\": \"NONE\",\n                    \"integrityImpact\": \"NONE\",\n                    \"availabilityImpact\": \"HIGH\",\n                    \"baseScore\": 7.5,\n                    \"baseSeverity\": \"HIGH\",\n                    \"_id\": \"68ea009d4756e2091a6e0399\"\n                },\n                \"cvssData\": [\n                    {\n                        \"version\": \"3.1\",\n                        \"vector\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n                        \"score\": 7.5,\n                        \"severity\": \"HIGH\",\n                        \"source\": \"NVD\",\n                        \"_id\": \"68ea009d4756e2091a6e039a\"\n                    },\n                    {\n                        \"version\": \"3.1\",\n                        \"vector\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n                        \"score\": 7.5,\n                        \"severity\": \"HIGH\",\n                        \"source\": \"OSV\",\n                        \"_id\": \"6903b7fbfd6fa668689e6228\"\n                    }\n                ],\n                \"cvssDataAddedTimestamp\": \"2025-09-24T07:00:38.977Z\",\n                \"dateCreated\": \"2025-09-24T07:00:39.329Z\",\n                \"dateModified\": \"2026-03-12T07:50:59.542Z\",\n                \"description\": \"The huggingface/transformers library, versions prior to 4.53.0, is vulnerable to Regular Expression Denial of Service (ReDoS) in the AdamWeightDecay optimizer. The vulnerability arises from the _do_use_weight_decay method, which processes user-controlled regular expressions in the include_in_weight_decay and exclude_from_weight_decay lists. Malicious regular expressions can cause catastrophic backtracking during the re.search call, leading to 100% CPU utilization and a denial of service. This issue can be exploited by attackers who can control the patterns in these lists, potentially causing the machine learning task to hang and rendering services unresponsive.\",\n                \"epssPercentile\": 0.08903,\n                \"epssScore\": 0.00032,\n                \"kevData\": {\n                    \"_id\": \"68d39717ab7c44e90b4479ab\"\n                },\n                \"lastCheckedMitigation\": null,\n                \"listingLastModified\": \"2025-10-10T21:31:30.230Z\",\n                \"mitigation\": [\n                    {\n                        \"pkg:pypi/transformers\": {\n                            \"fixedVersions\": [\n                                \"4.53.0\"\n                            ],\n                            \"lastAffectedVersions\": []\n                        }\n                    }\n                ],\n                \"mitigationNotes\": [],\n                \"nvdMatchingChecksum\": \"444bd6e5dd307d05e384f5771fc930ba8d025ef5933481e1cbe005bde1425a6b\",\n                \"osvMatchingChecksum\": {\n                    \"GHSA-4W7R-H757-3R74\": \"7b7e2cab8b4a5f07354921051f8efa61385ede9f7cd5e303c26a3dc752ad76cf\",\n                    \"CVE-2025-6921\": \"b9e4c7efbc6be2792a9c26d63708769c5b0f5b34313d5306eb07486f99785936\"\n                },\n                \"preferredScore\": 7.5,\n                \"preferredSeverity\": \"HIGH\",\n                \"priorityScore\": 317590,\n                \"publishDate\": \"2025-09-23T14:15:41.000Z\",\n                \"recommendedAction\": \"monitor\",\n                \"references\": [\n                    {\n                        \"type\": \"ADVISORY\",\n                        \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2025-6921\",\n                        \"_id\": \"69b26846898aa7f4961a2c94\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/47c34fba5c303576560cb29767efb452ff12b8be\",\n                        \"_id\": \"69b26846898aa7f4961a2c95\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/d37f7517972f67e3f2194c000ed0f87f064e5099\",\n                        \"_id\": \"69b26846898aa7f4961a2c96\"\n                    },\n                    {\n                        \"type\": \"PACKAGE\",\n                        \"url\": \"https://github.com/huggingface/transformers\",\n                        \"_id\": \"69b26846898aa7f4961a2c97\"\n                    },\n                    {\n                        \"type\": \"WEB\",\n                        \"url\": \"https://huntr.com/bounties/287d15a7-6e7c-45d2-8c05-11e305776f1f\",\n                        \"_id\": \"69b26846898aa7f4961a2c98\"\n                    },\n                    {\n                        \"type\": \"EVIDENCE\",\n                        \"url\": \"https://huntr.com/bounties/287d15a7-6e7c-45d2-8c05-11e305776f1f\",\n                        \"_id\": \"6903b7fbfd6fa668689e6229\"\n                    },\n                    {\n                        \"type\": \"FIX\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/47c34fba5c303576560cb29767efb452ff12b8be\",\n                        \"_id\": \"6903b7fbfd6fa668689e622a\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://github.com/huggingface/transformers/commit/47c34fba5c303576560cb29767efb452ff12b8be\",\n                        \"_id\": \"68ea009d4756e2091a6e039b\"\n                    },\n                    {\n                        \"type\": \"link\",\n                        \"url\": \"https://huntr.com/bounties/287d15a7-6e7c-45d2-8c05-11e305776f1f\",\n                        \"_id\": \"68ea009d4756e2091a6e039c\"\n                    }\n                ],\n                \"sourceIdentifier\": null,\n                \"sources\": [\n                    \"OSV\",\n                    \"NVD\"\n                ],\n                \"status\": \"PUBLISHED\",\n                \"ticketIds\": null,\n                \"componentVulnerabilities\": [\n                    {\n                        \"_id\": \"69b1b5c8006efb8786cc7c9e\",\n                        \"cveId\": \"CVE-2025-6921\",\n                        \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                        \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                        \"__v\": 0,\n                        \"dateCreated\": \"2026-03-11T18:34:48.548Z\",\n                        \"dateModified\": \"2026-03-12T07:51:00.554Z\",\n                        \"datePublished\": null,\n                        \"epssScore\": 0.00032,\n                        \"explanations\": [\n                            \"No explanations available\"\n                        ],\n                        \"jobNames\": [\n                            \"job-vulnerability-match\"\n                        ],\n                        \"packageUrl\": null,\n                        \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                        \"packageVersion\": \"4.51.3\",\n                        \"preferredScore\": null,\n                        \"preferredSeverity\": null,\n                        \"priorityScore\": 317590,\n                        \"recommendedAction\": \"monitor\",\n                        \"severityLabel\": null,\n                        \"severityScore\": null,\n                        \"sourceLinks\": [\n                            \"https://osv.dev/vulnerability/CVE-2025-6921\"\n                        ],\n                        \"sources\": [\n                            \"OSV\"\n                        ],\n                        \"vulnerabilityId\": null,\n                        \"assetComponents\": [\n                            {\n                                \"_id\": \"69b0e24b006efb8786c96426\",\n                                \"organizationComponentId\": \"69b0e24b006efb8786c963d4\",\n                                \"organizationAssetId\": \"69b0e24a006efb8786c96381\",\n                                \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                                \"__v\": 0,\n                                \"commitVersionHash\": null,\n                                \"componentFullyQualifiedName\": \"transformers\",\n                                \"componentPackageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"componentPackageVersion\": \"4.51.3\",\n                                \"countVulnerabilities\": {\n                                    \"careAbout\": 0,\n                                    \"critical\": 0,\n                                    \"high\": 2,\n                                    \"medium\": 3,\n                                    \"low\": 1,\n                                    \"info\": 0,\n                                    \"total\": 6,\n                                    \"mitigate\": 0,\n                                    \"monitor\": 2,\n                                    \"accept\": 4,\n                                    \"inKEV\": 0,\n                                    \"inKEVPreviously\": 0,\n                                    \"_id\": \"69b0e24ccae46d8137f11813\"\n                                },\n                                \"cpes\": [],\n                                \"cveIds\": {},\n                                \"dateCreated\": \"2026-03-11T03:32:27.461Z\",\n                                \"dateModified\": \"2026-03-11T03:32:28.937Z\",\n                                \"ecosystem\": \"pypi\",\n                                \"firstCpeParts\": null,\n                                \"fullyQualifiedName\": \"transformers\",\n                                \"hasNamespace\": false,\n                                \"isVulnerable\": true,\n                                \"licenses\": [\n                                    {\n                                        \"id\": \"Apache-1.1\",\n                                        \"name\": \"Apache-1.1\",\n                                        \"text\": \"(Apache-1.1)\",\n                                        \"url\": null,\n                                        \"acknowledgement\": null,\n                                        \"licensing\": null,\n                                        \"properties\": null,\n                                        \"matchedId\": \"6674c0d37aa4245b3eb4592e\",\n                                        \"_id\": \"69b0e24b62e4c36e9bfee83c\"\n                                    }\n                                ],\n                                \"mimeType\": null,\n                                \"name\": \"transformers\",\n                                \"packageSource\": null,\n                                \"packageSourceVersion\": null,\n                                \"packageUrlNoVersion\": \"pkg:pypi/transformers\",\n                                \"packageVersion\": null,\n                                \"purlParts\": {\n                                    \"ecosystem\": \"pypi\",\n                                    \"namespace\": \"\",\n                                    \"name\": \"transformers\",\n                                    \"version\": \"4.51.3\",\n                                    \"subpath\": \"\",\n                                    \"distro\": null,\n                                    \"distroVersion\": null,\n                                    \"source\": null,\n                                    \"sourceVersion\": null,\n                                    \"epoch\": null,\n                                    \"rawPurl\": \"pkg:pypi/transformers@4.51.3\",\n                                    \"vendorName\": \"\",\n                                    \"vendorNameAliases\": [],\n                                    \"validation\": {\n                                        \"isValid\": false,\n                                        \"validationErrors\": [\n                                            \"PURL does not follow general structure. See PURL specification to ensure your package URLs are valid.\"\n                                        ]\n                                    },\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83d\"\n                                },\n                                \"resolvedCpes\": null,\n                                \"riskScore\": \"low\",\n                                \"supplier\": {\n                                    \"text\": [],\n                                    \"_id\": \"69b0e24b62e4c36e9bfee83b\",\n                                    \"contact\": []\n                                },\n                                \"vendorName\": []\n                            }\n                        ]\n                    }\n                ],\n                \"recommendationScore\": 2,\n                \"triageScore\": 7,\n                \"severity\": \"HIGH\",\n                \"cvssScore\": 7.5,\n                \"affectedComponents\": [\n                    {\n                        \"id\": \"69b0e24b006efb8786c963d4\",\n                        \"affectedComponentName\": \"pkg:pypi/transformers@4.51.3\"\n                    }\n                ]\n            }\n        ],\n        \"datasets\": [],\n        \"files\": [\n            {\n                \"name\": \".gitattributes\",\n                \"type\": \"file\",\n                \"hash\": \".gitattributes-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf34\"\n            },\n            {\n                \"name\": \"LICENSE\",\n                \"type\": \"file\",\n                \"hash\": \"license-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf35\"\n            },\n            {\n                \"name\": \"README.md\",\n                \"type\": \"file\",\n                \"hash\": \"readme.md-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf36\"\n            },\n            {\n                \"name\": \"THIRD_PARTY_NOTICES.md\",\n                \"type\": \"file\",\n                \"hash\": \"third_party_notices.md-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf37\"\n            },\n            {\n                \"name\": \"chat_template.jinja\",\n                \"type\": \"file\",\n                \"hash\": \"chat_template.jinja-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf38\"\n            },\n            {\n                \"name\": \"config.json\",\n                \"type\": \"file\",\n                \"hash\": \"config.json-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf39\"\n            },\n            {\n                \"name\": \"configuration_deepseek.py\",\n                \"type\": \"file\",\n                \"hash\": \"configuration_deepseek.py-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf3a\"\n            },\n            {\n                \"name\": \"docs/deploy_guidance.md\",\n                \"type\": \"file\",\n                \"hash\": \"docs-deploy_guidance.md-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf3b\"\n            },\n            {\n                \"name\": \"docs/tool_call_guidance.md\",\n                \"type\": \"file\",\n                \"hash\": \"docs-tool_call_guidance.md-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf3c\"\n            },\n            {\n                \"name\": \"figures/Base-Evaluation.png\",\n                \"type\": \"file\",\n                \"hash\": \"figures-base-evaluation.png-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf3d\"\n            },\n            {\n                \"name\": \"figures/banner.png\",\n                \"type\": \"file\",\n                \"hash\": \"figures-banner.png-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf3e\"\n            },\n            {\n                \"name\": \"figures/kimi-logo.png\",\n                \"type\": \"file\",\n                \"hash\": \"figures-kimi-logo.png-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf3f\"\n            },\n            {\n                \"name\": \"generation_config.json\",\n                \"type\": \"file\",\n                \"hash\": \"generation_config.json-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf40\"\n            },\n            {\n                \"name\": \"model-00001-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00001-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf41\"\n            },\n            {\n                \"name\": \"model-00002-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00002-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf42\"\n            },\n            {\n                \"name\": \"model-00003-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00003-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf43\"\n            },\n            {\n                \"name\": \"model-00004-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00004-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf44\"\n            },\n            {\n                \"name\": \"model-00005-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00005-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf45\"\n            },\n            {\n                \"name\": \"model-00006-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00006-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf46\"\n            },\n            {\n                \"name\": \"model-00007-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00007-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf47\"\n            },\n            {\n                \"name\": \"model-00008-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00008-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf48\"\n            },\n            {\n                \"name\": \"model-00009-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00009-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf49\"\n            },\n            {\n                \"name\": \"model-00010-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00010-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf4a\"\n            },\n            {\n                \"name\": \"model-00011-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00011-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf4b\"\n            },\n            {\n                \"name\": \"model-00012-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00012-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf4c\"\n            },\n            {\n                \"name\": \"model-00013-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00013-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf4d\"\n            },\n            {\n                \"name\": \"model-00014-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00014-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf4e\"\n            },\n            {\n                \"name\": \"model-00015-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00015-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf4f\"\n            },\n            {\n                \"name\": \"model-00016-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00016-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf50\"\n            },\n            {\n                \"name\": \"model-00017-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00017-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf51\"\n            },\n            {\n                \"name\": \"model-00018-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00018-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf52\"\n            },\n            {\n                \"name\": \"model-00019-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00019-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf53\"\n            },\n            {\n                \"name\": \"model-00020-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00020-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf54\"\n            },\n            {\n                \"name\": \"model-00021-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00021-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf55\"\n            },\n            {\n                \"name\": \"model-00022-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00022-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf56\"\n            },\n            {\n                \"name\": \"model-00023-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00023-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf57\"\n            },\n            {\n                \"name\": \"model-00024-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00024-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf58\"\n            },\n            {\n                \"name\": \"model-00025-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00025-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf59\"\n            },\n            {\n                \"name\": \"model-00026-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00026-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf5a\"\n            },\n            {\n                \"name\": \"model-00027-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00027-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf5b\"\n            },\n            {\n                \"name\": \"model-00028-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00028-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf5c\"\n            },\n            {\n                \"name\": \"model-00029-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00029-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf5d\"\n            },\n            {\n                \"name\": \"model-00030-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00030-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf5e\"\n            },\n            {\n                \"name\": \"model-00031-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00031-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf5f\"\n            },\n            {\n                \"name\": \"model-00032-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00032-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf60\"\n            },\n            {\n                \"name\": \"model-00033-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00033-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf61\"\n            },\n            {\n                \"name\": \"model-00034-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00034-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf62\"\n            },\n            {\n                \"name\": \"model-00035-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00035-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf63\"\n            },\n            {\n                \"name\": \"model-00036-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00036-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf64\"\n            },\n            {\n                \"name\": \"model-00037-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00037-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf65\"\n            },\n            {\n                \"name\": \"model-00038-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00038-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf66\"\n            },\n            {\n                \"name\": \"model-00039-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00039-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf67\"\n            },\n            {\n                \"name\": \"model-00040-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00040-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf68\"\n            },\n            {\n                \"name\": \"model-00041-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00041-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf69\"\n            },\n            {\n                \"name\": \"model-00042-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00042-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf6a\"\n            },\n            {\n                \"name\": \"model-00043-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00043-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf6b\"\n            },\n            {\n                \"name\": \"model-00044-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00044-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf6c\"\n            },\n            {\n                \"name\": \"model-00045-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00045-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf6d\"\n            },\n            {\n                \"name\": \"model-00046-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00046-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf6e\"\n            },\n            {\n                \"name\": \"model-00047-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00047-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf6f\"\n            },\n            {\n                \"name\": \"model-00048-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00048-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf70\"\n            },\n            {\n                \"name\": \"model-00049-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00049-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf71\"\n            },\n            {\n                \"name\": \"model-00050-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00050-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf72\"\n            },\n            {\n                \"name\": \"model-00051-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00051-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf73\"\n            },\n            {\n                \"name\": \"model-00052-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00052-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf74\"\n            },\n            {\n                \"name\": \"model-00053-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00053-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf75\"\n            },\n            {\n                \"name\": \"model-00054-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00054-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf76\"\n            },\n            {\n                \"name\": \"model-00055-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00055-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf77\"\n            },\n            {\n                \"name\": \"model-00056-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00056-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf78\"\n            },\n            {\n                \"name\": \"model-00057-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00057-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf79\"\n            },\n            {\n                \"name\": \"model-00058-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00058-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf7a\"\n            },\n            {\n                \"name\": \"model-00059-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00059-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf7b\"\n            },\n            {\n                \"name\": \"model-00060-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00060-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf7c\"\n            },\n            {\n                \"name\": \"model-00061-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00061-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf7d\"\n            },\n            {\n                \"name\": \"model-00062-of-000062.safetensors\",\n                \"type\": \"file\",\n                \"hash\": \"model-00062-of-000062.safetensors-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf7e\"\n            },\n            {\n                \"name\": \"model.safetensors.index.json\",\n                \"type\": \"file\",\n                \"hash\": \"model.safetensors.index.json-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf7f\"\n            },\n            {\n                \"name\": \"modeling_deepseek.py\",\n                \"type\": \"file\",\n                \"hash\": \"modeling_deepseek.py-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf80\"\n            },\n            {\n                \"name\": \"tiktoken.model\",\n                \"type\": \"file\",\n                \"hash\": \"tiktoken.model-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf81\"\n            },\n            {\n                \"name\": \"tokenization_kimi.py\",\n                \"type\": \"file\",\n                \"hash\": \"tokenization_kimi.py-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf82\"\n            },\n            {\n                \"name\": \"tokenizer_config.json\",\n                \"type\": \"file\",\n                \"hash\": \"tokenizer_config.json-26-03-11_03:32:22\",\n                \"_id\": \"69b0e24994a3b7426fe4cf83\"\n            }\n        ],\n        \"analysisStatus\": \"completed\",\n        \"analysisScanStatus\": \"completed\",\n        \"analysisJobErrors\": [],\n        \"analysisScanErrors\": [],\n        \"riskOverview\": {\n            \"riskScore\": \"high\",\n            \"findings\": [\n                {\n                    \"description\": \"Model Kimi-K2-Instruct-0905 is associated with restricted countries: China.\",\n                    \"category\": \"violation\",\n                    \"evidence\": {\n                        \"sources\": [\n                            \"Wikipedia article identifying Moonshot AI as Beijing-based\",\n                            \"PitchBook profile confirming Beijing, China headquarters\",\n                            \"Fortune company profile listing Haidian, China location\",\n                            \"Medium article linking the HuggingFace moonshotai account to Beijing-based Moonshot AI\",\n                            \"Multiple news sources referring to it as a Chinese AI company\"\n                        ],\n                        \"reasoning\": \"Multiple high-quality sources consistently identify Moonshot AI as a Chinese company headquartered in Beijing. The company's founder Yang Zhilin is based in Beijing, and the company is repeatedly referred to as a Chinese AI firm. The HuggingFace profile 'moonshotai' is directly linked to this company through source 7, which explicitly connects the HuggingFace models to 'Moonshot AI, a Beijing-based tech company.' The company is also described as one of China's 'AI Tiger' companies and has been identified as a mainland China unicorn.\",\n                        \"confidenceScore\": 0.95\n                    }\n                },\n                {\n                    \"description\": \"Model Kimi-K2-Instruct-0905 does not have dataset information listed.\",\n                    \"category\": \"needs_review\"\n                },\n                {\n                    \"description\": \"Model Kimi-K2-Instruct-0905 is from supplier moonshotai, which is not in the list of trusted suppliers.\",\n                    \"category\": \"needs_review\"\n                },\n                {\n                    \"description\": \"Model Kimi-K2-Instruct-0905 ships with software, which may have additional licensing or security implications.\",\n                    \"category\": \"needs_review\"\n                },\n                {\n                    \"description\": \"Model Kimi-K2-Instruct-0905 is not subject to supplier blocklist restrictions (no blocklist defined).\",\n                    \"category\": \"needs_review\"\n                },\n                {\n                    \"description\": \"Model Kimi-K2-Instruct-0905 has licenses that do not match any known licenses.\",\n                    \"category\": \"needs_review\"\n                },\n                {\n                    \"description\": \"Model Kimi-K2-Instruct-0905 was last updated on 2026-01-30, which is within the staleness threshold of 6 months.\",\n                    \"category\": \"in_compliance\"\n                },\n                {\n                    \"description\": \"Model Kimi-K2-Instruct-0905 was released on 2025-09-03, which is more than 2 months ago.\",\n                    \"category\": \"in_compliance\"\n                },\n                {\n                    \"description\": \"Model Kimi-K2-Instruct-0905 is still listed by its provider.\",\n                    \"category\": \"in_compliance\"\n                },\n                {\n                    \"description\": \"Model Kimi-K2-Instruct-0905 is not in the organization's model blocklist.\",\n                    \"category\": \"in_compliance\"\n                }\n            ],\n            \"countComplianceStatuses\": {\n                \"inCompliance\": 4,\n                \"needsReview\": 5,\n                \"violations\": 1\n            }\n        },\n        \"parentModel\": \"--\",\n        \"parentModelPurl\": \"--\",\n        \"notes\": \"\",\n        \"dateCreated\": \"2026-03-11T03:32:21.109Z\",\n        \"dateModified\": \"2026-03-11T03:32:25.430Z\",\n        \"isInInventory\": false,\n        \"isInventoryRequested\": false,\n        \"policyScanStatus\": \"completed\",\n        \"policyScanErrors\": [],\n        \"organizationAssetId\": \"69b0e24a006efb8786c96381\",\n        \"rawModelResponseData\": {},\n        \"rawManifestData\": {}\n    }\n}"}],"_postman_id":"6331caa5-dec8-4822-aff9-6a71851f2281"},{"name":"Download AIBOM","id":"ee8446af-c24f-47e9-bbfe-58b1b095b9a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n  \"kind\": \"model\",\n  \"repo\": \"MiniMax-M2.1\",\n  \"owner\": \"MiniMaxAI\",\n  \"revision\": \"HEAD\",\n  \"includeArxivData\": true\n}"},"url":"{{apiUrl}}/model-analysis/download?modelId=69b0e2455ae038b130560da4&downloadType=bom&downloadFormat=json","description":"<p>This endpoint downloads the AI Bill of Materials (AIBOM) for a specified AI model. The AIBOM provides comprehensive information about the model's components, dependencies, metadata, and security considerations in a standardized format.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:ai-model-analysis</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h2 id=\"query-parameters\">Query Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>modelId</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The unique identifier for the AI model. This ID is obtained from the model analysis request.</td>\n</tr>\n<tr>\n<td><code>downloadType</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>Specifies the type of download. Use <code>bom</code> to download the Bill of Materials.</td>\n</tr>\n<tr>\n<td><code>downloadFormat</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The format of the downloaded file. Use <code>json</code> for AIBOM.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-format\">Response Format</h2>\n<p>The endpoint returns an AIBOM JSON file in <strong>CycloneDX SBOM format</strong> (version 1.5), which includes:</p>\n<ul>\n<li><p><strong>Metadata</strong>: Timestamp, tool information, and generation details</p>\n</li>\n<li><p><strong>Components</strong>: Detailed information about the AI model including:</p>\n<ul>\n<li><p>Model name, version, and supplier</p>\n</li>\n<li><p>License information</p>\n</li>\n<li><p>External references (model cards, documentation, arxiv papers)</p>\n</li>\n<li><p>Model parameters (task, architecture family, model architecture)</p>\n</li>\n<li><p>File components (configuration files, model weights, etc.)</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Dependencies</strong>: Relationships between components and libraries (e.g., transformers, torch)</p>\n</li>\n<li><p><strong>Properties</strong>: Additional metadata such as creation date, downloads, likes, and library name</p>\n</li>\n</ul>\n<h2 id=\"example-request\">Example Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET {{apiUrl}}/model-analysis/download?modelId=68ee6aabcde6902d09e0e0cd&amp;downloadType=bom&amp;downloadFormat=json\nAuthorization: Bearer {{apiToken}}\n\n</code></pre><h2 id=\"response-status-codes\">Response Status Codes</h2>\n<ul>\n<li><p><code>200 OK</code>: AIBOM successfully returned</p>\n</li>\n<li><p><code>401 Unauthorized</code>: Missing or invalid authentication token</p>\n</li>\n<li><p><code>404 Not Found</code>: Model ID not found or analysis not available</p>\n</li>\n<li><p><code>500 Internal Server Error</code>: Server error during AIBOM generation</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["model-analysis","download"],"host":["{{apiUrl}}"],"query":[{"key":"modelId","value":"69b0e2455ae038b130560da4"},{"key":"downloadType","value":"bom"},{"key":"downloadFormat","value":"json"}],"variable":[]}},"response":[{"id":"fa834687-49ae-4eb7-a3e6-46f24427333a","name":"Download AIBOM","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n  \"kind\": \"model\",\n  \"repo\": \"MiniMax-M2.1\",\n  \"owner\": \"MiniMaxAI\",\n  \"revision\": \"HEAD\",\n  \"includeArxivData\": true\n}"},"url":{"raw":"{{apiUrl}}/model-analysis/download?modelId=69b0e2455ae038b130560da4&downloadType=bom&downloadFormat=json","host":["{{apiUrl}}"],"path":["model-analysis","download"],"query":[{"key":"modelId","value":"69b0e2455ae038b130560da4"},{"key":"downloadType","value":"bom"},{"key":"downloadFormat","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-amz-id-2","value":"b5rloB+VXstI6tjhJxv/abJyyvUr7LgRI1AtFyddXqqv+zk86ZwJkiJ9M3wCBurr5yDGkhtjRFM="},{"key":"x-amz-request-id","value":"4GW6T6G7F1CXHE8F"},{"key":"Date","value":"Thu, 12 Mar 2026 18:55:43 GMT"},{"key":"Last-Modified","value":"Wed, 11 Mar 2026 03:32:26 GMT"},{"key":"ETag","value":"\"ccfc42d1e3a55b435e610a33dd4c6682\""},{"key":"x-amz-server-side-encryption","value":"AES256"},{"key":"x-amz-meta-modelname","value":"Kimi-K2-Instruct-0905"},{"key":"x-amz-meta-messageid","value":"410f025d-c812-4ef3-8e2f-ec9d68de9b6c"},{"key":"x-amz-meta-uploadedat","value":"2026-03-11T03:32:25.309Z"},{"key":"x-amz-meta-purl","value":"pkg:huggingface/moonshotai/Kimi-K2-Instruct-0905@ac6c49f04883bd0a0598b790693a72061c676629"},{"key":"x-amz-meta-fromcache","value":"false"},{"key":"x-amz-version-id","value":"dGb02UDRYl6NoOb1Ot.56epbEHavYCRE"},{"key":"x-amz-meta-modelanalysisid","value":"69b0e24594a3b7426fe4cf21"},{"key":"Content-Disposition","value":"attachment; filename=\"69b0e2455ae038b130560da4-bom.json\""},{"key":"Accept-Ranges","value":"bytes"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"43405"},{"key":"Server","value":"AmazonS3"}],"cookie":[],"responseTime":null,"body":"{\n    \"bomFormat\": \"CycloneDX\",\n    \"specVersion\": \"1.6\",\n    \"serialNumber\": \"urn:uuid:ec567c4e-48bb-428d-9fce-24ddd07f3d46\",\n    \"version\": 1,\n    \"metadata\": {\n        \"timestamp\": \"2026-03-11T03:32:25Z\",\n        \"tools\": {\n            \"components\": [\n                {\n                    \"type\": \"machine-learning-model\",\n                    \"author\": \"Manifest Cyber\",\n                    \"publisher\": \"Manifest Cyber\",\n                    \"name\": \"aibom-gen\",\n                    \"version\": \"0.1.0-alpha.12\",\n                    \"description\": \"Email info@manifestcyber.com for more information about this tool.\"\n                }\n            ]\n        }\n    },\n    \"components\": [\n        {\n            \"bom-ref\": \"moonshotai-kimi-k2-instruct-0905-68b7b74cf359c986356bdef1\",\n            \"type\": \"machine-learning-model\",\n            \"supplier\": {\n                \"name\": \"moonshotai\"\n            },\n            \"name\": \"moonshotai/Kimi-K2-Instruct-0905\",\n            \"version\": \"ac6c49f04883bd0a0598b790693a72061c676629\",\n            \"licenses\": [\n                {\n                    \"license\": {\n                        \"id\": \"other\"\n                    }\n                }\n            ],\n            \"pedigree\": {\n                \"ancestors\": null\n            },\n            \"externalReferences\": [\n                {\n                    \"url\": \"https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905\",\n                    \"type\": \"model-card\"\n                },\n                {\n                    \"url\": \"https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905\",\n                    \"type\": \"website\"\n                }\n            ],\n            \"properties\": [\n                {\n                    \"name\": \"createdAt\",\n                    \"value\": \"2025-09-03T03:34:36.000Z\"\n                },\n                {\n                    \"name\": \"lastModified\",\n                    \"value\": \"2026-01-30T04:50:25.000Z\"\n                },\n                {\n                    \"name\": \"downloads\",\n                    \"value\": \"27067\"\n                },\n                {\n                    \"name\": \"likes\",\n                    \"value\": \"685\"\n                },\n                {\n                    \"name\": \"libraryName\",\n                    \"value\": \"transformers\"\n                },\n                {\n                    \"name\": \"safetensors.total\",\n                    \"value\": \"1026470735448\"\n                },\n                {\n                    \"name\": \"safetensors.parameters.F32\",\n                    \"value\": \"62518232\"\n                },\n                {\n                    \"name\": \"safetensors.parameters.BF16\",\n                    \"value\": \"2514975360\"\n                },\n                {\n                    \"name\": \"safetensors.parameters.F8_E4M3\",\n                    \"value\": \"1023893241856\"\n                },\n                {\n                    \"name\": \"usedStorage\",\n                    \"value\": \"1029258547073\"\n                }\n            ],\n            \"components\": [\n                {\n                    \"bom-ref\": \".gitattributes-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \".gitattributes\"\n                },\n                {\n                    \"bom-ref\": \"license-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"LICENSE\"\n                },\n                {\n                    \"bom-ref\": \"readme.md-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"README.md\"\n                },\n                {\n                    \"bom-ref\": \"third_party_notices.md-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"THIRD_PARTY_NOTICES.md\"\n                },\n                {\n                    \"bom-ref\": \"chat_template.jinja-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"chat_template.jinja\"\n                },\n                {\n                    \"bom-ref\": \"config.json-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"config.json\"\n                },\n                {\n                    \"bom-ref\": \"configuration_deepseek.py-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"configuration_deepseek.py\"\n                },\n                {\n                    \"bom-ref\": \"docs-deploy_guidance.md-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"docs/deploy_guidance.md\"\n                },\n                {\n                    \"bom-ref\": \"docs-tool_call_guidance.md-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"docs/tool_call_guidance.md\"\n                },\n                {\n                    \"bom-ref\": \"figures-base-evaluation.png-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"figures/Base-Evaluation.png\"\n                },\n                {\n                    \"bom-ref\": \"figures-banner.png-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"figures/banner.png\"\n                },\n                {\n                    \"bom-ref\": \"figures-kimi-logo.png-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"figures/kimi-logo.png\"\n                },\n                {\n                    \"bom-ref\": \"generation_config.json-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"generation_config.json\"\n                },\n                {\n                    \"bom-ref\": \"model-00001-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00001-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00002-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00002-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00003-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00003-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00004-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00004-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00005-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00005-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00006-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00006-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00007-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00007-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00008-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00008-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00009-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00009-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00010-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00010-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00011-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00011-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00012-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00012-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00013-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00013-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00014-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00014-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00015-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00015-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00016-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00016-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00017-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00017-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00018-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00018-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00019-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00019-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00020-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00020-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00021-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00021-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00022-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00022-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00023-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00023-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00024-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00024-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00025-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00025-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00026-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00026-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00027-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00027-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00028-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00028-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00029-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00029-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00030-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00030-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00031-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00031-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00032-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00032-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00033-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00033-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00034-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00034-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00035-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00035-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00036-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00036-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00037-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00037-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00038-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00038-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00039-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00039-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00040-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00040-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00041-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00041-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00042-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00042-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00043-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00043-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00044-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00044-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00045-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00045-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00046-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00046-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00047-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00047-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00048-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00048-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00049-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00049-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00050-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00050-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00051-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00051-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00052-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00052-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00053-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00053-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00054-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00054-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00055-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00055-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00056-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00056-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00057-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00057-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00058-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00058-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00059-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00059-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00060-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00060-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00061-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00061-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model-00062-of-000062.safetensors-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model-00062-of-000062.safetensors\"\n                },\n                {\n                    \"bom-ref\": \"model.safetensors.index.json-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"model.safetensors.index.json\"\n                },\n                {\n                    \"bom-ref\": \"modeling_deepseek.py-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"modeling_deepseek.py\"\n                },\n                {\n                    \"bom-ref\": \"tiktoken.model-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"tiktoken.model\"\n                },\n                {\n                    \"bom-ref\": \"tokenization_kimi.py-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"tokenization_kimi.py\"\n                },\n                {\n                    \"bom-ref\": \"tokenizer_config.json-26-03-11_03:32:22\",\n                    \"type\": \"file\",\n                    \"name\": \"tokenizer_config.json\"\n                },\n                {\n                    \"bom-ref\": \"lib-transformers-a9b2bbd1\",\n                    \"type\": \"library\",\n                    \"name\": \"transformers\",\n                    \"version\": \"4.51.3\",\n                    \"description\": \"Transformers: State-of-the-art Natural Language Processing library for PyTorch, TensorFlow, and JAX\",\n                    \"purl\": \"pkg:pypi/transformers@4.51.3\",\n                    \"externalReferences\": [\n                        {\n                            \"url\": \"https://pypi.org/project/transformers@4.51.3/\",\n                            \"type\": \"distribution\"\n                        },\n                        {\n                            \"url\": \"https://huggingface.co/docs/transformers\",\n                            \"type\": \"documentation\"\n                        },\n                        {\n                            \"url\": \"https://github.com/huggingface/transformers\",\n                            \"type\": \"vcs\"\n                        }\n                    ]\n                },\n                {\n                    \"bom-ref\": \"lib-safetensors-4645536\",\n                    \"type\": \"library\",\n                    \"name\": \"safetensors\",\n                    \"description\": \"Safetensors: Simple, safe way to store and distribute tensors\",\n                    \"purl\": \"pkg:pypi/safetensors\",\n                    \"externalReferences\": [\n                        {\n                            \"url\": \"https://pypi.org/project/safetensors/\",\n                            \"type\": \"distribution\"\n                        }\n                    ]\n                },\n                {\n                    \"bom-ref\": \"lib-jinja-d6c3860f\",\n                    \"type\": \"library\",\n                    \"name\": \"jinja\",\n                    \"description\": \"Jinja2: A modern and designer-friendly templating language for Python\",\n                    \"purl\": \"pkg:pypi/jinja2\",\n                    \"externalReferences\": [\n                        {\n                            \"url\": \"https://pypi.org/project/jinja2/\",\n                            \"type\": \"distribution\"\n                        }\n                    ]\n                },\n                {\n                    \"bom-ref\": \"lib-vllm-e33a0a0c\",\n                    \"type\": \"library\",\n                    \"name\": \"vllm\",\n                    \"description\": \"vLLM: High-throughput and memory-efficient inference and serving engine for LLMs\",\n                    \"purl\": \"pkg:pypi/vllm\",\n                    \"externalReferences\": [\n                        {\n                            \"url\": \"https://pypi.org/project/vllm/\",\n                            \"type\": \"distribution\"\n                        }\n                    ]\n                },\n                {\n                    \"bom-ref\": \"lib-tokenizers-2c3eee4b\",\n                    \"type\": \"library\",\n                    \"name\": \"tokenizers\",\n                    \"description\": \"Tokenizers: Fast and customizable tokenization library for Natural Language Processing\",\n                    \"purl\": \"pkg:pypi/tokenizers\",\n                    \"externalReferences\": [\n                        {\n                            \"url\": \"https://pypi.org/project/tokenizers/\",\n                            \"type\": \"distribution\"\n                        }\n                    ]\n                },\n                {\n                    \"bom-ref\": \"lib-huggingface_hub-2fd5a42d\",\n                    \"type\": \"library\",\n                    \"name\": \"huggingface_hub\",\n                    \"description\": \"Hugging Face Hub: Client library for huggingface.co hub\",\n                    \"purl\": \"pkg:pypi/huggingface_hub\",\n                    \"externalReferences\": [\n                        {\n                            \"url\": \"https://pypi.org/project/huggingface_hub/\",\n                            \"type\": \"distribution\"\n                        }\n                    ]\n                },\n                {\n                    \"bom-ref\": \"lib-torch-ae349521\",\n                    \"type\": \"library\",\n                    \"name\": \"torch\",\n                    \"description\": \"PyTorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration\",\n                    \"purl\": \"pkg:pypi/torch\",\n                    \"externalReferences\": [\n                        {\n                            \"url\": \"https://pypi.org/project/torch/\",\n                            \"type\": \"distribution\"\n                        },\n                        {\n                            \"url\": \"https://pytorch.org/docs/\",\n                            \"type\": \"documentation\"\n                        },\n                        {\n                            \"url\": \"https://github.com/pytorch/pytorch\",\n                            \"type\": \"vcs\"\n                        }\n                    ]\n                },\n                {\n                    \"bom-ref\": \"lib-accelerate-9d9f16f0\",\n                    \"type\": \"library\",\n                    \"name\": \"accelerate\",\n                    \"description\": \"Accelerate: Library for easily training and using PyTorch models with multi-GPU, TPU, mixed-precision\",\n                    \"purl\": \"pkg:pypi/accelerate\",\n                    \"externalReferences\": [\n                        {\n                            \"url\": \"https://pypi.org/project/accelerate/\",\n                            \"type\": \"distribution\"\n                        }\n                    ]\n                },\n                {\n                    \"bom-ref\": \"lib-numpy-a21ca480\",\n                    \"type\": \"library\",\n                    \"name\": \"numpy\",\n                    \"description\": \"NumPy: Fundamental package for array computing in Python\",\n                    \"purl\": \"pkg:pypi/numpy\",\n                    \"externalReferences\": [\n                        {\n                            \"url\": \"https://pypi.org/project/numpy/\",\n                            \"type\": \"distribution\"\n                        }\n                    ]\n                },\n                {\n                    \"bom-ref\": \"lib-tiktoken-f884e724\",\n                    \"type\": \"library\",\n                    \"name\": \"tiktoken\",\n                    \"description\": \"Python library: tiktoken\",\n                    \"purl\": \"pkg:pypi/tiktoken\",\n                    \"externalReferences\": [\n                        {\n                            \"url\": \"https://pypi.org/project/tiktoken/\",\n                            \"type\": \"distribution\"\n                        }\n                    ]\n                }\n            ],\n            \"modelCard\": {\n                \"modelParameters\": {\n                    \"approach\": {\n                        \"type\": \"self-supervised\"\n                    },\n                    \"task\": \"text-generation\",\n                    \"architectureFamily\": \"kimi_k2\",\n                    \"modelArchitecture\": \"DeepseekV3ForCausalLM\",\n                    \"inputs\": [\n                        {\n                            \"format\": \"text\"\n                        }\n                    ],\n                    \"outputs\": [\n                        {\n                            \"format\": \"generated-text\"\n                        }\n                    ]\n                },\n                \"quantitativeAnalysis\": {\n                    \"performanceMetrics\": null\n                },\n                \"considerations\": {\n                    \"users\": [\n                        \"Developers using coding agents\",\n                        \"Users needing advanced AI chat completion\",\n                        \"Users requiring tool integration in AI workflows\"\n                    ],\n                    \"useCases\": [\n                        \"Real-world coding agent tasks\",\n                        \"Frontend programming improvements\",\n                        \"Chat-based AI assistant interactions\",\n                        \"Autonomous tool calling and execution\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"dependencies\": [\n        {\n            \"ref\": \"tokenization_kimi.py-26-03-11_03:32:22\",\n            \"dependsOn\": [\n                \"lib-tiktoken-f884e724\"\n            ]\n        },\n        {\n            \"ref\": \"configuration_deepseek.py-26-03-11_03:32:22\",\n            \"dependsOn\": [\n                \"lib-transformers-a9b2bbd1\"\n            ]\n        },\n        {\n            \"ref\": \"modeling_deepseek.py-26-03-11_03:32:22\",\n            \"dependsOn\": [\n                \"lib-transformers-a9b2bbd1\"\n            ]\n        },\n        {\n            \"ref\": \"tokenization_kimi.py-26-03-11_03:32:22\",\n            \"dependsOn\": [\n                \"lib-transformers-a9b2bbd1\"\n            ]\n        },\n        {\n            \"ref\": \"tokenization_kimi.py-26-03-11_03:32:22\",\n            \"dependsOn\": [\n                \"lib-tokenizers-2c3eee4b\"\n            ]\n        },\n        {\n            \"ref\": \"modeling_deepseek.py-26-03-11_03:32:22\",\n            \"dependsOn\": [\n                \"lib-torch-ae349521\"\n            ]\n        },\n        {\n            \"ref\": \"modeling_deepseek.py-26-03-11_03:32:22\",\n            \"dependsOn\": [\n                \"lib-numpy-a21ca480\"\n            ]\n        }\n    ],\n    \"manifest_data\": {\n        \"raw_responses\": [\n            {\n                \"_id\": \"68b7b74cf359c986356bdef1\",\n                \"modelId\": \"moonshotai/Kimi-K2-Instruct-0905\",\n                \"author\": \"moonshotai\",\n                \"sha\": \"ac6c49f04883bd0a0598b790693a72061c676629\",\n                \"lastModified\": \"2026-01-30T04:50:25.000Z\",\n                \"private\": false,\n                \"disabled\": false,\n                \"gated\": false,\n                \"pipeline_tag\": \"text-generation\",\n                \"tags\": [\n                    \"transformers\",\n                    \"safetensors\",\n                    \"kimi_k2\",\n                    \"text-generation\",\n                    \"conversational\",\n                    \"custom_code\",\n                    \"license:other\",\n                    \"eval-results\",\n                    \"endpoints_compatible\",\n                    \"fp8\",\n                    \"region:us\"\n                ],\n                \"downloads\": 27067,\n                \"library_name\": \"transformers\",\n                \"widgetData\": [\n                    {\n                        \"text\": \"Hi, what can you help me with?\",\n                        \"example_title\": \"\",\n                        \"group\": \"\"\n                    },\n                    {\n                        \"text\": \"What is 84 * 3 / 2?\",\n                        \"example_title\": \"\",\n                        \"group\": \"\"\n                    },\n                    {\n                        \"text\": \"Tell me an interesting fact about the universe!\",\n                        \"example_title\": \"\",\n                        \"group\": \"\"\n                    },\n                    {\n                        \"text\": \"Explain quantum computing in simple terms.\",\n                        \"example_title\": \"\",\n                        \"group\": \"\"\n                    }\n                ],\n                \"likes\": 685,\n                \"model-index\": null,\n                \"config\": {\n                    \"architectures\": [\n                        \"DeepseekV3ForCausalLM\"\n                    ],\n                    \"model_type\": \"kimi_k2\",\n                    \"auto_map\": {\n                        \"AutoConfig\": \"configuration_deepseek.DeepseekV3Config\",\n                        \"AutoModel\": \"modeling_deepseek.DeepseekV3Model\",\n                        \"AutoModelForCausalLM\": \"modeling_deepseek.DeepseekV3ForCausalLM\"\n                    },\n                    \"torch_dtype\": \"\",\n                    \"quantization_config\": {\n                        \"quant_method\": \"fp8\"\n                    },\n                    \"transformers_version\": \"\",\n                    \"torch_version\": \"\",\n                    \"tensorflow_version\": \"\",\n                    \"jax_version\": \"\",\n                    \"safetensors_version\": \"\",\n                    \"diffusers_version\": \"\",\n                    \"peft_version\": \"\",\n                    \"accelerate_version\": \"\",\n                    \"tokenizers_version\": \"\"\n                },\n                \"cardData\": {\n                    \"pipeline_tag\": \"\",\n                    \"license\": \"other\",\n                    \"tags\": null,\n                    \"programming_language\": null,\n                    \"metrics\": null,\n                    \"inference\": null,\n                    \"widget\": null,\n                    \"model-index\": null,\n                    \"datasets\": null\n                },\n                \"transformersInfo\": {\n                    \"auto_model\": \"AutoModelForCausalLM\",\n                    \"pipeline_tag\": \"text-generation\",\n                    \"processor\": \"\"\n                },\n                \"spaces\": [\n                    \"enzostvs/deepsite\",\n                    \"hadadxyz/ai\",\n                    \"VIDraft/StealthMark\",\n                    \"umint/ai\",\n                    \"dropkickJesus999/deepsiteV3\",\n                    \"llamameta/Free-kimi-k2-thinking\",\n                    \"kalhdrawi/omnidev\",\n                    \"Dhruv-18/Advanced-AI-Reasoning-pro\",\n                    \"MCP-1st-Birthday/MCEPTION\",\n                    \"hfmlsoc/Lit_Review_with_LMs\",\n                    \"MCP-1st-Birthday/LifeFlow-AI\",\n                    \"supertakerin2/midiarenge\",\n                    \"Lesterchia1/fpoce_Multilingual_Translator_with_Speech_Support\",\n                    \"Dhruv-18/ReasonaIQ\",\n                    \"PrinceZaman/DeepSeek_Coder\",\n                    \"minhan6559/Log-Analysis-MultiAgent\",\n                    \"Maga222006/MultiagentPersonalAssistant\",\n                    \"Merunes/HW_4\",\n                    \"Shirochi/Glossarion\",\n                    \"leohellmark/deepsite\",\n                    \"Shubham-10000/RAG-enabled-AI-assistant\",\n                    \"Co2fi-crs/NaanhAI\",\n                    \"Vibow/Vibow-AI\",\n                    \"ss900371tw/H\",\n                    \"baeGil/calculus-agent\",\n                    \"AyushSAI/Mall_Assistant_SuperAI\",\n                    \"Co2fi-crs/ChatAI\",\n                    \"dsmoraes/concretopro-ai\",\n                    \"hmqid03/vietqa-api\",\n                    \"AdarshJi/FALTU_ADARSH\",\n                    \"droplyvictor89/sara-ai\",\n                    \"Foulques/ares\",\n                    \"KopaGrom/MyJobai\",\n                    \"LAI-TEQUMSA/TEQUMSA-Interstellar-Conduit\",\n                    \"YuZijie123/myyy-woof\",\n                    \"sreecharan-desu/ArthikBackend\",\n                    \"hienluu/chatzaroni\",\n                    \"jakewatson91/sherlock\",\n                    \"bestroi/ArchaeoQuery\",\n                    \"Xavernox/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"Preetham015/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"Shishircipher/LegalPulse\",\n                    \"keso2000/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"Angusbeef2007/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"Riy777/moonshotai-Kimi-K2-Instruct-0905_tome\",\n                    \"John292910/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"a766426356/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"Chingkheinganba/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"haydennnn/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"Peggy7777/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"RainZ156/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"majorSeaweed/atlan\",\n                    \"smitb2005/novatra\",\n                    \"Tej1230/Multi-Chatbot\",\n                    \"ayushhgface25/AI-Document-Summarizer\",\n                    \"kawaiipeace/AI-OMS-Analyze\",\n                    \"kritagyapradhan/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"bboat/AI-OMS-Analyze\",\n                    \"BrendonP/deepsite\",\n                    \"Sadaf2917/Hostel_Management_System\",\n                    \"Tavocpost/CocoCalendar2\",\n                    \"hts-ai/kimi-vs-llama\",\n                    \"Zapresh/deepsite\",\n                    \"Aasher/GemAI_Backend\",\n                    \"jrvr16f84/nl2stiEF\",\n                    \"maucdev/Deepsite\",\n                    \"Alae65/deepsite\",\n                    \"abudingo83/arpeprojet\",\n                    \"Humbl3m33/vibecoderv3\",\n                    \"banyiee/deepsite\",\n                    \"torVik/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"svgbogdnn/UNsuccess1_agent\",\n                    \"369KG/KAVINAPPERS\",\n                    \"Mesmermooo/thedengier\",\n                    \"jarvix-studio/jarvix_studio\",\n                    \"AKLearn/text-summarizer\",\n                    \"nakel-ola/deepsite\",\n                    \"aymenhhh/deepsite-copy\",\n                    \"AnkhLP/deepsite\",\n                    \"abdullah8844/deepsite\",\n                    \"Realmeas/deepsite\",\n                    \"fredcaixeta/graph_analyst_agent_barcelona\",\n                    \"d4ru5/deepsite\",\n                    \"zeusrabia/deepsite-Free-v3\",\n                    \"nono81/deepsite\",\n                    \"xafar/wg\",\n                    \"CodeHubb/deepsite\",\n                    \"felixilars/pdf_extractor\",\n                    \"Hammad712/Virtual-try-on\",\n                    \"nareshjain2/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"fredcaixeta/sql_barcelona_agent\",\n                    \"Shah049/ParaAi\",\n                    \"Rudert/VicoXDarkGPT\",\n                    \"Savas95/deepsite-savas95\",\n                    \"Rudert/VicoX\",\n                    \"Virendra121/moonshotai-Kimi-K2-Instruct-0905\",\n                    \"willsh1997/groq-chatbot-testrange\",\n                    \"Junaidb/logic_the_quality_layer_for_human_thought\",\n                    \"Jeetheshwar/Indian-Legal-RAG-Assistant\",\n                    \"CihanYakar/moonshotai\"\n                ],\n                \"siblings\": [\n                    {\n                        \"rfilename\": \".gitattributes\"\n                    },\n                    {\n                        \"rfilename\": \"LICENSE\"\n                    },\n                    {\n                        \"rfilename\": \"README.md\"\n                    },\n                    {\n                        \"rfilename\": \"THIRD_PARTY_NOTICES.md\"\n                    },\n                    {\n                        \"rfilename\": \"chat_template.jinja\"\n                    },\n                    {\n                        \"rfilename\": \"config.json\"\n                    },\n                    {\n                        \"rfilename\": \"configuration_deepseek.py\"\n                    },\n                    {\n                        \"rfilename\": \"docs/deploy_guidance.md\"\n                    },\n                    {\n                        \"rfilename\": \"docs/tool_call_guidance.md\"\n                    },\n                    {\n                        \"rfilename\": \"figures/Base-Evaluation.png\"\n                    },\n                    {\n                        \"rfilename\": \"figures/banner.png\"\n                    },\n                    {\n                        \"rfilename\": \"figures/kimi-logo.png\"\n                    },\n                    {\n                        \"rfilename\": \"generation_config.json\"\n                    },\n                    {\n                        \"rfilename\": \"model-00001-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00002-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00003-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00004-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00005-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00006-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00007-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00008-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00009-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00010-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00011-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00012-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00013-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00014-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00015-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00016-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00017-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00018-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00019-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00020-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00021-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00022-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00023-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00024-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00025-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00026-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00027-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00028-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00029-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00030-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00031-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00032-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00033-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00034-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00035-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00036-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00037-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00038-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00039-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00040-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00041-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00042-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00043-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00044-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00045-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00046-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00047-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00048-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00049-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00050-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00051-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00052-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00053-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00054-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00055-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00056-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00057-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00058-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00059-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00060-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00061-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model-00062-of-000062.safetensors\"\n                    },\n                    {\n                        \"rfilename\": \"model.safetensors.index.json\"\n                    },\n                    {\n                        \"rfilename\": \"modeling_deepseek.py\"\n                    },\n                    {\n                        \"rfilename\": \"tiktoken.model\"\n                    },\n                    {\n                        \"rfilename\": \"tokenization_kimi.py\"\n                    },\n                    {\n                        \"rfilename\": \"tokenizer_config.json\"\n                    }\n                ],\n                \"createdAt\": \"2025-09-03T03:34:36.000Z\",\n                \"safetensors\": {\n                    \"parameters\": {\n                        \"BF16\": 2514975360,\n                        \"F32\": 62518232,\n                        \"F8_E4M3\": 1023893241856\n                    },\n                    \"total\": 1026470735448\n                },\n                \"usedStorage\": 1029258547073,\n                \"Datasets\": null\n            }\n        ],\n        \"committers\": [\n            {\n                \"username\": \"courage17340\",\n                \"fullName\": \"Chu Wei\",\n                \"communityScore\": 24,\n                \"organizations\": [\n                    \"moonshotai\",\n                    \"kirito-1118\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 11,\n                \"twitter\": \"\",\n                \"github\": \"\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"hmellor\",\n                \"fullName\": \"Harry Mellor\",\n                \"communityScore\": 36,\n                \"organizations\": [\n                    \"huggingface\",\n                    \"Graphcore\",\n                    \"hfendpoints-images\"\n                ],\n                \"models\": [\n                    \"hmellor/tiny-random-BambaForCausalLM\",\n                    \"hmellor/Ilama-3.2-1B\",\n                    \"hmellor/tiny-random-Gemma2ForCausalLM\",\n                    \"hmellor/tiny-random-LlamaForCausalLM\"\n                ],\n                \"datasets\": null,\n                \"num_followers\": 58,\n                \"twitter\": \"hmellor_\",\n                \"github\": \"hmellor\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"bigmoyan\",\n                \"fullName\": \"moyanwang\",\n                \"communityScore\": 59,\n                \"organizations\": [\n                    \"TMElyralab\",\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 35,\n                \"twitter\": \"\",\n                \"github\": \"MoyanZitto\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"bigmoyan\",\n                \"fullName\": \"moyanwang\",\n                \"communityScore\": 59,\n                \"organizations\": [\n                    \"TMElyralab\",\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 35,\n                \"twitter\": \"\",\n                \"github\": \"MoyanZitto\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"bigmoyan\",\n                \"fullName\": \"moyanwang\",\n                \"communityScore\": 59,\n                \"organizations\": [\n                    \"TMElyralab\",\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 35,\n                \"twitter\": \"\",\n                \"github\": \"MoyanZitto\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"bigmoyan\",\n                \"fullName\": \"moyanwang\",\n                \"communityScore\": 59,\n                \"organizations\": [\n                    \"TMElyralab\",\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 35,\n                \"twitter\": \"\",\n                \"github\": \"MoyanZitto\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"bigmoyan\",\n                \"fullName\": \"moyanwang\",\n                \"communityScore\": 59,\n                \"organizations\": [\n                    \"TMElyralab\",\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 35,\n                \"twitter\": \"\",\n                \"github\": \"MoyanZitto\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"jerryzhu423\",\n                \"fullName\": \"Han Zhu\",\n                \"communityScore\": 1,\n                \"organizations\": [\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 26,\n                \"twitter\": \"\",\n                \"github\": \"jerryzhu-msh\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"lsw825\",\n                \"fullName\": \"Shaowei Liu\",\n                \"communityScore\": 10,\n                \"organizations\": [\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 30,\n                \"twitter\": \"\",\n                \"github\": \"\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"xxr3376\",\n                \"fullName\": \"Xinran\",\n                \"communityScore\": 7,\n                \"organizations\": [\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 22,\n                \"twitter\": \"\",\n                \"github\": \"\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"jerryzhu423\",\n                \"fullName\": \"Han Zhu\",\n                \"communityScore\": 1,\n                \"organizations\": [\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 26,\n                \"twitter\": \"\",\n                \"github\": \"jerryzhu-msh\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"bigmoyan\",\n                \"fullName\": \"moyanwang\",\n                \"communityScore\": 59,\n                \"organizations\": [\n                    \"TMElyralab\",\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 35,\n                \"twitter\": \"\",\n                \"github\": \"MoyanZitto\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"bigmoyan\",\n                \"fullName\": \"moyanwang\",\n                \"communityScore\": 59,\n                \"organizations\": [\n                    \"TMElyralab\",\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 35,\n                \"twitter\": \"\",\n                \"github\": \"MoyanZitto\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"liushaowei\",\n                \"fullName\": \"shaowei\",\n                \"communityScore\": 2,\n                \"organizations\": null,\n                \"models\": [\n                    \"liushaowei/whisper-base-common_voice0506\",\n                    \"liushaowei/whisper-base-common_voice0505\",\n                    \"liushaowei/whisper-base-common_voice0502\",\n                    \"liushaowei/whisper-base-hi-test\",\n                    \"liushaowei/whisper-base-chinese-test\",\n                    \"liushaowei/whisper-small-hi-test\",\n                    \"liushaowei/whisper-base-common_voiceModifyLength\",\n                    \"liushaowei/whisper-base-common_voice0428\",\n                    \"liushaowei/whisper-base-common_voice0427\",\n                    \"liushaowei/whisper-base-common_voice11_chinese3\"\n                ],\n                \"datasets\": null,\n                \"num_followers\": 0,\n                \"twitter\": \"\",\n                \"github\": \"\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"lsw825\",\n                \"fullName\": \"Shaowei Liu\",\n                \"communityScore\": 10,\n                \"organizations\": [\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 30,\n                \"twitter\": \"\",\n                \"github\": \"\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"lsw825\",\n                \"fullName\": \"Shaowei Liu\",\n                \"communityScore\": 10,\n                \"organizations\": [\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 30,\n                \"twitter\": \"\",\n                \"github\": \"\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"lsw825\",\n                \"fullName\": \"Shaowei Liu\",\n                \"communityScore\": 10,\n                \"organizations\": [\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 30,\n                \"twitter\": \"\",\n                \"github\": \"\",\n                \"website\": \"\"\n            },\n            {\n                \"username\": \"lsw825\",\n                \"fullName\": \"Shaowei Liu\",\n                \"communityScore\": 10,\n                \"organizations\": [\n                    \"moonshotai\"\n                ],\n                \"models\": null,\n                \"datasets\": null,\n                \"num_followers\": 30,\n                \"twitter\": \"\",\n                \"github\": \"\",\n                \"website\": \"\"\n            }\n        ]\n    }\n}"}],"_postman_id":"ee8446af-c24f-47e9-bbfe-58b1b095b9a5"},{"name":"Get AI Risk Policy","id":"cc2649e8-8215-4442-bf0d-abc52d925e62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/policies/ai","description":"<h2 id=\"get-policiesai\">GET /policies/ai</h2>\n<p>Retrieves the organization's AI Risk Policy configuration. This policy defines the severity thresholds and rules used to evaluate AI model risk across the software supply chain.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:ai-risk-policy</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h3 id=\"request\">Request</h3>\n<p><strong>Method:</strong> <code>GET</code><br /><strong>URL:</strong> <code>{{apiUrl}}/policies/ai</code><br /><strong>Headers:</strong> None required beyond authentication.<br /><strong>Query Parameters:</strong> None.<br /><strong>Request Body:</strong> None.</p>\n<hr />\n<h3 id=\"response\">Response</h3>\n<p><strong>Status:</strong> <code>200 OK</code><br /><strong>Content-Type:</strong> <code>application/json</code></p>\n<h4 id=\"response-body-schema\">Response Body Schema</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>success</code></td>\n<td>boolean</td>\n<td>Indicates whether the request was successful.</td>\n</tr>\n<tr>\n<td><code>errors</code></td>\n<td>array</td>\n<td>List of errors, if any. Empty on success.</td>\n</tr>\n<tr>\n<td><code>data</code></td>\n<td>object</td>\n<td>The AI Risk Policy configuration object.</td>\n</tr>\n<tr>\n<td><code>data.approvedLicenseSeverity</code></td>\n<td>string</td>\n<td>Severity level for approved licenses (e.g. <code>\"low\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.forbiddenLicenseSeverity</code></td>\n<td>string</td>\n<td>Severity level for forbidden licenses (e.g. <code>\"critical\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.reviewLicenseSeverity</code></td>\n<td>string</td>\n<td>Severity level for licenses under review (e.g. <code>\"low\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.flaggedCountries</code></td>\n<td>object</td>\n<td>Configuration for flagged countries of origin.</td>\n</tr>\n<tr>\n<td><code>data.flaggedCountries.severity</code></td>\n<td>string</td>\n<td>Severity level for flagged country violations (e.g. <code>\"critical\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.flaggedCountries.countries</code></td>\n<td>array of strings</td>\n<td>ISO 3166-1 alpha-3 country codes that are flagged (e.g. <code>[\"PRK\", \"RUS\", \"IRN\", \"CHN\", \"AFG\"]</code>).</td>\n</tr>\n<tr>\n<td><code>data.missingDatasetSeverity</code></td>\n<td>string</td>\n<td>Severity level when a model's training dataset is missing (e.g. <code>\"medium\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.outdatedModel</code></td>\n<td>object</td>\n<td>Policy for outdated AI models.</td>\n</tr>\n<tr>\n<td><code>data.outdatedModel.threshold.duration</code></td>\n<td>number</td>\n<td>Duration value for the outdated model threshold (e.g. <code>6</code>).</td>\n</tr>\n<tr>\n<td><code>data.outdatedModel.threshold.unit</code></td>\n<td>string</td>\n<td>Unit for the threshold duration (e.g. <code>\"months\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.outdatedModel.severity</code></td>\n<td>string</td>\n<td>Severity level for outdated models (e.g. <code>\"critical\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.recentlyCreated</code></td>\n<td>object</td>\n<td>Policy for recently created models.</td>\n</tr>\n<tr>\n<td><code>data.recentlyCreated.threshold.duration</code></td>\n<td>number</td>\n<td>Duration value for the recently created threshold (e.g. <code>2</code>).</td>\n</tr>\n<tr>\n<td><code>data.recentlyCreated.threshold.unit</code></td>\n<td>string</td>\n<td>Unit for the threshold duration (e.g. <code>\"months\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.recentlyCreated.severity</code></td>\n<td>string</td>\n<td>Severity level for recently created models (e.g. <code>\"medium\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.shipsWithSoftwareSeverity</code></td>\n<td>string</td>\n<td>Severity level when a model ships with software (e.g. <code>\"low\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.modelBlocklist</code></td>\n<td>object</td>\n<td>Blocklist of specific AI models.</td>\n</tr>\n<tr>\n<td><code>data.modelBlocklist.severity</code></td>\n<td>string</td>\n<td>Severity level for blocklisted models (e.g. <code>\"medium\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.modelBlocklist.models</code></td>\n<td>array of strings</td>\n<td>List of blocked model names (e.g. <code>[\"LTX-2.3\"]</code>).</td>\n</tr>\n<tr>\n<td><code>data.supplierBlocklist</code></td>\n<td>object</td>\n<td>Blocklist of specific AI suppliers.</td>\n</tr>\n<tr>\n<td><code>data.supplierBlocklist.severity</code></td>\n<td>string</td>\n<td>Severity level for blocklisted suppliers (e.g. <code>\"critical\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.supplierBlocklist.suppliers</code></td>\n<td>array of strings</td>\n<td>List of blocked supplier names (e.g. <code>[\"deepseek\"]</code>).</td>\n</tr>\n<tr>\n<td><code>data.trustedOrganizations</code></td>\n<td>object</td>\n<td>List of trusted AI model organizations.</td>\n</tr>\n<tr>\n<td><code>data.trustedOrganizations.severity</code></td>\n<td>string</td>\n<td>Severity level when a model is from an untrusted organization (e.g. <code>\"medium\"</code>).</td>\n</tr>\n<tr>\n<td><code>data.trustedOrganizations.organizations</code></td>\n<td>array of strings</td>\n<td>List of trusted organization names (e.g. <code>[\"Apple\", \"meta-llama\", \"Facebook\", \"Microsoft\", \"SAP\", \"Google\"]</code>).</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"errors\": [],\n  \"data\": {\n    \"approvedLicenseSeverity\": \"low\",\n    \"forbiddenLicenseSeverity\": \"critical\",\n    \"reviewLicenseSeverity\": \"low\",\n    \"flaggedCountries\": {\n      \"severity\": \"critical\",\n      \"countries\": [\"PRK\", \"RUS\", \"IRN\", \"CHN\", \"AFG\"]\n    },\n    \"missingDatasetSeverity\": \"medium\",\n    \"outdatedModel\": {\n      \"threshold\": { \"duration\": 6, \"unit\": \"months\" },\n      \"severity\": \"critical\"\n    },\n    \"recentlyCreated\": {\n      \"threshold\": { \"duration\": 2, \"unit\": \"months\" },\n      \"severity\": \"medium\"\n    },\n    \"shipsWithSoftwareSeverity\": \"low\",\n    \"modelBlocklist\": {\n      \"severity\": \"medium\",\n      \"models\": [\"LTX-2.3\"]\n    },\n    \"supplierBlocklist\": {\n      \"severity\": \"critical\",\n      \"suppliers\": [\"deepseek\"]\n    },\n    \"trustedOrganizations\": {\n      \"severity\": \"medium\",\n      \"organizations\": [\"Apple\", \"meta-llama\", \"Facebook\", \"Microsoft\", \"SAP\", \"Google\"]\n    }\n  }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"severity-levels\">Severity Levels</h3>\n<p>Severity values across all policy fields follow this scale:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>low</code></td>\n<td>Informational — minimal risk</td>\n</tr>\n<tr>\n<td><code>medium</code></td>\n<td>Moderate risk — review recommended</td>\n</tr>\n<tr>\n<td><code>high</code></td>\n<td>Significant risk — action advised</td>\n</tr>\n<tr>\n<td><code>critical</code></td>\n<td>Highest risk — immediate action required</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["policies","ai"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ea0571ab-7dfd-4566-a2c7-fab6b9f862d6","name":"Get AI Risk Policy","originalRequest":{"method":"GET","header":[],"url":"{{apiUrl}}/policies/ai"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Fri, 13 Mar 2026 15:12:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.6"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.development.manifestcyber.dev"},{"key":"ETag","value":"W/\"392-Xk8IYA0aHJJsrs3u5MlcCzR3ACg\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.development.manifestcyber.dev; script-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.development.manifestcyber.dev https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.development.manifestcyber.dev https://cdn.merge.dev; font-src 'self' blob: https://.development.manifestcyber.dev https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.development.manifestcyber.dev; child-src 'self' blob: https://.development.manifestcyber.dev https://cdn.merge.dev; frame-src 'self' blob: https://.development.manifestcyber.dev https://cdn.merge.dev; worker-src 'self' blob: https://*.development.manifestcyber.dev; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": {\n        \"approvedLicenseSeverity\": \"low\",\n        \"forbiddenLicenseSeverity\": \"critical\",\n        \"reviewLicenseSeverity\": \"low\",\n        \"flaggedCountries\": {\n            \"severity\": \"critical\",\n            \"countries\": [\n                \"PRK\",\n                \"RUS\",\n                \"IRN\",\n                \"CHN\",\n                \"AFG\"\n            ],\n            \"_id\": \"69b1b5a211d49efa3db16d28\"\n        },\n        \"missingDatasetSeverity\": \"medium\",\n        \"outdatedModel\": {\n            \"threshold\": {\n                \"duration\": 6,\n                \"unit\": \"months\"\n            },\n            \"severity\": \"critical\",\n            \"_id\": \"69b1b5a211d49efa3db16d26\"\n        },\n        \"recentlyCreated\": {\n            \"threshold\": {\n                \"duration\": 2,\n                \"unit\": \"months\"\n            },\n            \"severity\": \"medium\",\n            \"_id\": \"69b1b5a211d49efa3db16d25\"\n        },\n        \"shipsWithSoftwareSeverity\": \"low\",\n        \"modelBlocklist\": {\n            \"severity\": \"medium\",\n            \"models\": [\n                \"LTX-2.3\"\n            ]\n        },\n        \"supplierBlocklist\": {\n            \"severity\": \"critical\",\n            \"suppliers\": [\n                \"deepseek\"\n            ]\n        },\n        \"trustedOrganizations\": {\n            \"severity\": \"medium\",\n            \"suppliers\": [\n                \"Apple\",\n                \"meta-llama\",\n                \"Facebook\",\n                \"Microsoft\",\n                \"SAP\",\n                \"Google\"\n            ],\n            \"_id\": \"69b1b5a211d49efa3db16d24\",\n            \"organizations\": [\n                \"Apple\",\n                \"meta-llama\",\n                \"Facebook\",\n                \"Microsoft\",\n                \"SAP\",\n                \"Google\"\n            ]\n        }\n    }\n}"}],"_postman_id":"cc2649e8-8215-4442-bf0d-abc52d925e62"},{"name":"AI Risk Policy Update","id":"8826df27-a154-4b9e-b6a6-e4be531a9db5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"approvedLicenseSeverity\": \"low\",\n  \"forbiddenLicenseSeverity\": \"critical\",\n  \"reviewLicenseSeverity\": \"low\",\n  \"flaggedCountries\": {\n    \"severity\": \"critical\",\n    \"countries\": [\"PRK\", \"RUS\", \"IRN\", \"CHN\", \"AFG\"]\n  },\n  \"missingDatasetSeverity\": \"medium\",\n  \"outdatedModel\": {\n    \"threshold\": { \"duration\": 6, \"unit\": \"months\" },\n    \"severity\": \"critical\"\n  },\n  \"recentlyCreated\": {\n    \"threshold\": { \"duration\": 2, \"unit\": \"months\" },\n    \"severity\": \"medium\"\n  },\n  \"shipsWithSoftwareSeverity\": \"low\",\n  \"modelBlocklist\": {\n    \"severity\": \"medium\",\n    \"models\": [\"LTX-2.3\"]\n  },\n  \"supplierBlocklist\": {\n    \"severity\": \"critical\",\n    \"suppliers\": [\"deepseek\", \"qwen\"]\n  },\n  \"trustedOrganizations\": {\n    \"severity\": \"medium\",\n    \"suppliers\": [\"Apple\", \"meta-llama\", \"Microsoft\", \"Google\", \"Manifest\"]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/policies/ai","description":"<p>Updates the AI risk policy configuration for the organization. This endpoint allows you to define severity thresholds and rules for evaluating AI models based on licensing, geographic origin, model age, supplier trust, and other risk factors.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:ai-risk-policy</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h2 id=\"request-body\">Request Body</h2>\n<p><strong>Recommendation</strong>: Use the GET operation to receive the existing AI Risk policy configuration, then edit edit as needed, and call the PUT operation with the updated configuration as the payload to push the updates to Manifest.</p>\n<p><strong>NOTE</strong>: The <code>trustedOrganizations.organizations</code> key in the GET response needs to be changed to <code>trustedOrganizations.suppliers</code> for the PUT operation request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>approvedLicenseSeverity</code></td>\n<td>string</td>\n<td>Severity level assigned when a model uses an approved license.</td>\n</tr>\n<tr>\n<td><code>forbiddenLicenseSeverity</code></td>\n<td>string</td>\n<td>Severity level assigned when a model uses a forbidden license.</td>\n</tr>\n<tr>\n<td><code>reviewLicenseSeverity</code></td>\n<td>string</td>\n<td>Severity level assigned when a model's license requires review.</td>\n</tr>\n<tr>\n<td><code>flaggedCountries</code></td>\n<td>object</td>\n<td>Configuration for flagging models originating from specific countries.</td>\n</tr>\n<tr>\n<td><code>flaggedCountries.severity</code></td>\n<td>string</td>\n<td>Severity level for models from flagged countries.</td>\n</tr>\n<tr>\n<td><code>flaggedCountries.countries</code></td>\n<td>string[]</td>\n<td>ISO 3166-1 alpha-3 country codes to flag (e.g. <code>PRK</code>, <code>RUS</code>, <code>IRN</code>, <code>CHN</code>, <code>AFG</code>).</td>\n</tr>\n<tr>\n<td><code>missingDatasetSeverity</code></td>\n<td>string</td>\n<td>Severity level when a model's training dataset information is missing.</td>\n</tr>\n<tr>\n<td><code>outdatedModel</code></td>\n<td>object</td>\n<td>Configuration for flagging models that haven't been updated recently.</td>\n</tr>\n<tr>\n<td><code>outdatedModel.threshold.duration</code></td>\n<td>number</td>\n<td>Number of time units after which a model is considered outdated.</td>\n</tr>\n<tr>\n<td><code>outdatedModel.threshold.unit</code></td>\n<td>string</td>\n<td>Unit of time for the outdated threshold (<code>months</code>, <code>years</code>, etc.).</td>\n</tr>\n<tr>\n<td><code>outdatedModel.severity</code></td>\n<td>string</td>\n<td>Severity level for outdated models.</td>\n</tr>\n<tr>\n<td><code>recentlyCreated</code></td>\n<td>object</td>\n<td>Configuration for flagging models that were created very recently (potentially untested).</td>\n</tr>\n<tr>\n<td><code>recentlyCreated.threshold.duration</code></td>\n<td>number</td>\n<td>Number of time units defining \"recently created\".</td>\n</tr>\n<tr>\n<td><code>recentlyCreated.threshold.unit</code></td>\n<td>string</td>\n<td>Unit of time for the recently created threshold.</td>\n</tr>\n<tr>\n<td><code>recentlyCreated.severity</code></td>\n<td>string</td>\n<td>Severity level for recently created models.</td>\n</tr>\n<tr>\n<td><code>shipsWithSoftwareSeverity</code></td>\n<td>string</td>\n<td>Severity level when a model ships bundled with software.</td>\n</tr>\n<tr>\n<td><code>modelBlocklist</code></td>\n<td>object</td>\n<td>Configuration for explicitly blocked models.</td>\n</tr>\n<tr>\n<td><code>modelBlocklist.severity</code></td>\n<td>string</td>\n<td>Severity level for models on the blocklist.</td>\n</tr>\n<tr>\n<td><code>modelBlocklist.models</code></td>\n<td>string[]</td>\n<td>List of model identifiers to block (e.g. <code>LTX-2.3</code>).</td>\n</tr>\n<tr>\n<td><code>supplierBlocklist</code></td>\n<td>object</td>\n<td>Configuration for explicitly blocked suppliers.</td>\n</tr>\n<tr>\n<td><code>supplierBlocklist.severity</code></td>\n<td>string</td>\n<td>Severity level for models from blocked suppliers.</td>\n</tr>\n<tr>\n<td><code>supplierBlocklist.suppliers</code></td>\n<td>string[]</td>\n<td>List of supplier names to block (e.g. <code>deepseek</code>, <code>qwen</code>).</td>\n</tr>\n<tr>\n<td><code>trustedOrganizations</code></td>\n<td>object</td>\n<td>Configuration for trusted/allowlisted organizations.</td>\n</tr>\n<tr>\n<td><code>trustedOrganizations.severity</code></td>\n<td>string</td>\n<td>Severity level applied when a model is from a trusted organization.</td>\n</tr>\n<tr>\n<td><code>trustedOrganizations.suppliers</code></td>\n<td>string[]</td>\n<td>List of trusted supplier/organization names (e.g. <code>Apple</code>, <code>Microsoft</code>, <code>Google</code>).</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"severity-levels\">Severity Levels</h2>\n<p>Accepted values for all <code>severity</code> fields:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>low</code></td>\n<td>Informational — low risk</td>\n</tr>\n<tr>\n<td><code>medium</code></td>\n<td>Moderate risk, warrants review</td>\n</tr>\n<tr>\n<td><code>high</code></td>\n<td>High risk, action recommended</td>\n</tr>\n<tr>\n<td><code>critical</code></td>\n<td>Critical risk, immediate action required</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Returns a JSON object indicating success or failure.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"errors\": [],\n  \"data\": []\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["policies","ai"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b5056cd2-980f-4e89-bf23-10d31f54e733","name":"Put AI Risk Policy Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"approvedLicenseSeverity\": \"low\",\n  \"forbiddenLicenseSeverity\": \"critical\",\n  \"reviewLicenseSeverity\": \"low\",\n  \"flaggedCountries\": {\n    \"severity\": \"critical\",\n    \"countries\": [\"PRK\", \"RUS\", \"IRN\", \"CHN\", \"AFG\"]\n  },\n  \"missingDatasetSeverity\": \"medium\",\n  \"outdatedModel\": {\n    \"threshold\": { \"duration\": 6, \"unit\": \"months\" },\n    \"severity\": \"critical\"\n  },\n  \"recentlyCreated\": {\n    \"threshold\": { \"duration\": 2, \"unit\": \"months\" },\n    \"severity\": \"medium\"\n  },\n  \"shipsWithSoftwareSeverity\": \"low\",\n  \"modelBlocklist\": {\n    \"severity\": \"medium\",\n    \"models\": [\"LTX-2.3\"]\n  },\n  \"supplierBlocklist\": {\n    \"severity\": \"critical\",\n    \"suppliers\": [\"deepseek\", \"qwen\"]\n  },\n  \"trustedOrganizations\": {\n    \"severity\": \"medium\",\n    \"suppliers\": [\"Apple\", \"meta-llama\", \"Microsoft\", \"Google\", \"Manifest\"]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/policies/ai"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Fri, 13 Mar 2026 15:50:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.6"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.development.manifestcyber.dev"},{"key":"ETag","value":"W/\"26-WGjGJkW3LQ6SqWW13BWp/Hs6TW4\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.development.manifestcyber.dev; script-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.development.manifestcyber.dev https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.development.manifestcyber.dev https://cdn.merge.dev; font-src 'self' blob: https://.development.manifestcyber.dev https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.development.manifestcyber.dev https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.development.manifestcyber.dev; child-src 'self' blob: https://.development.manifestcyber.dev https://cdn.merge.dev; frame-src 'self' blob: https://.development.manifestcyber.dev https://cdn.merge.dev; worker-src 'self' blob: https://*.development.manifestcyber.dev; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": []\n}"}],"_postman_id":"8826df27-a154-4b9e-b6a6-e4be531a9db5"}],"id":"7f6f0ee9-c663-45dc-b5b7-2a35328b6b9d","description":"<p><strong>Note: The API endpoints in this module requires the AI Risk feature to be turned on for the organization.</strong></p>\n","_postman_id":"7f6f0ee9-c663-45dc-b5b7-2a35328b6b9d","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Asset","item":[{"name":"Fetch Single Asset","id":"fdbb26b7-1cdc-4ee5-aa41-f3d538747e61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/asset/:assetId/:organizationId","description":"<p>Fetch a single asset. This route requires an asset ID and your organization's ID.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:asset</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["asset",":assetId",":organizationId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>Asset ID to fetch .</p>\n","type":"text/plain"},"type":"any","value":"","key":"assetId"},{"description":{"content":"<p>ID of organization to view as (likely your own)</p>\n","type":"text/plain"},"type":"any","value":"","key":"organizationId"}]}},"response":[{"id":"aa9947ca-e02d-440c-abe1-cf2c173e7004","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/asset/:assetId/:organizationId","host":["{{apiUrl}}"],"path":["asset",":assetId",":organizationId"],"query":[{"key":"assetId","value":"assetId","description":"Optional. Confine results to a specific Asset ID.","type":"text","disabled":true},{"key":"componentIds","value":"componentId1, componentId2","description":"Optional. Confine results to 1 or more component ID's (comma-separated).","type":"text","disabled":true},{"key":"packageUrls","value":"pkg:npm/@cyclonedx/cyclonedx-npm@1.0.0-beta.8","description":"Optional. Confine results to 1 or more packageUrls (comma-separated)","disabled":true},{"key":"packageUrlNoVersion","value":"axios","description":"Optional. Confine results to those including this packageUrl (without a version)","disabled":true},{"key":"version","value":"1.0.0-beta.8","description":"Optional. Confine results to those including this version","disabled":true},{"key":"versionMajor","value":"1","description":"Optional. Confine results to those including this major version (semver).","disabled":true},{"key":"versionMinor","value":"0","description":"Optional. Confine results to those including this minor version (semver).","disabled":true},{"key":"versionPatch","value":"0","description":"Optional. Confine results to those including this patch version (semver).","disabled":true},{"key":"coordinates","value":"pkg:npm/@cyclonedx/cyclonedx-npm@1.0.0-beta.8","description":"Optional. Confine results to those including these coordinates (Package URL format)","disabled":true},{"key":"page","value":"2","description":"Optional, defaults to 1. Fetch a specifc page of results (based on limit)","disabled":true},{"key":"limit","value":"1","description":"Optional, defaults to 100. Limit results per page. Max per page is 1000.","disabled":true},{"key":"sort","value":"{ name: 1, _id: 1 }","description":"Optional. Object of fields and order (1 asc, -1 desc) to sort based on. Available fields include any fields found on a single Component.","type":"text","disabled":true}],"variable":[{"key":"assetId","value":"some-id-here","description":"Asset ID to fetch."},{"key":"organizationId","value":"your-organization-id","description":"ID of organization to view as (likely your own)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Feb 2023 06:50:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1457"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"5b1-CtnDNLbgXaG+P7wQQaY1+Sz4fm0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"organizationAsset\": {\n                \"_id\": \"some-id-here\",\n                \"assetId\": \"some-id-here\",\n                \"organizationId\": \"some-id-here\",\n                \"__v\": 0,\n                \"countVulnerabilities\": {\n                    \"critical\": 0,\n                    \"high\": 1,\n                    \"medium\": 0,\n                    \"low\": 0,\n                    \"info\": 0,\n                    \"total\": 1,\n                    \"_id\": \"some-id-here\"\n                },\n                \"dateCreated\": \"2023-02-06T17:17:26.713Z\",\n                \"dateModified\": \"2023-02-06T17:46:42.520Z\",\n                \"derivedEcosystem\": \"npm\",\n                \"isVulnerable\": true,\n                \"relationshipToOrg\": \"first\"\n            },\n            \"_id\": \"some-id-here\",\n            \"packageUrlNoVersion\": \"pkg:npm/manifest-web-app\",\n            \"version\": \"0.5.61\",\n            \"__v\": 0,\n            \"author\": \"Manifest Engineering <engineering@manifestcyber.com>\",\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/manifest-web-app@0.5.61\",\n            \"copyright\": null,\n            \"countVulnerabilities\": {\n                \"critical\": 0,\n                \"high\": 1,\n                \"medium\": 0,\n                \"low\": 0,\n                \"info\": 0,\n                \"total\": 1,\n                \"_id\": \"some-id-here\"\n            },\n            \"dateCreated\": \"2023-02-06T17:17:26.677Z\",\n            \"dateModified\": \"2023-02-06T17:46:42.648Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"manifest-web-app\",\n            \"hashes\": [],\n            \"isActive\": true,\n            \"isDeleted\": false,\n            \"isVulnerable\": true,\n            \"lastVulnerabilityScan\": null,\n            \"licenses\": [],\n            \"name\": \"manifest-web-app\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/manifest-web-app@0.5.61\",\n            \"publisher\": null,\n            \"references\": [\n                {\n                    \"type\": \"vcs\",\n                    \"url\": \"git@github.com:manifest-cyber/web-app.git\",\n                    \"_id\": \"some-id-here\"\n                }\n            ],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"application\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"61\"\n        }\n    ]\n}"}],"_postman_id":"fdbb26b7-1cdc-4ee5-aa41-f3d538747e61"},{"name":"Fetch All Versions of a Single Asset","id":"985f4598-4cfb-478c-ad4f-12cfaacc43be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/asset/:organizationAssetId/versions","description":"<p>Fetch a single asset. This route requires an asset ID and your organization's ID.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:asset</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["asset",":organizationAssetId","versions"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional: indicate that the Id is SbomId and not organizationAssetId</p>\n","type":"text/plain"},"key":"useSbomId","value":"false"}],"variable":[{"type":"any","value":"65c2aa271ae9f3a2f69ebdcf","key":"organizationAssetId"}]}},"response":[{"id":"e881ca47-6a46-47ed-8e4d-54ce2174dcb2","name":"Fetch all asset for organizationAssetId","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/asset/:organizationAssetId/versions","host":["{{apiUrl}}"],"path":["asset",":organizationAssetId","versions"],"variable":[{"key":"organizationAssetId","value":"65c2aa2b992235af975ad562"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://http://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"836"},{"key":"ETag","value":"W/\"344-4rkyysrSn/SCBgc3Wv5IX204c6s\""},{"key":"Date","value":"Wed, 07 Feb 2024 13:28:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"queryInfo\": {\n        \"nPage\": 1,\n        \"nLimit\": 100,\n        \"context\": \"\",\n        \"countVersions\": 1\n    },\n    \"data\": [\n        {\n            \"_id\": \"65c2aa2b992235af975ad562\",\n            \"version\": \"sha256:ce94f718d8ae40179243c1cb79127c7545841457b0b3a30f0a04ae84773b17f2\",\n            \"countLicenseIssues\": {\n                \"alert\": 0,\n                \"total\": 0,\n                \"unknown\": 0\n            },\n            \"countVulnerabilities\": {\n                \"critical\": 3,\n                \"high\": 15,\n                \"medium\": 22,\n                \"low\": 1,\n                \"info\": 2,\n                \"total\": 43,\n                \"mitigate\": 1,\n                \"monitor\": 36,\n                \"accept\": 6,\n                \"inKEV\": 0,\n                \"inKEVPreviously\": 0,\n                \"_id\": \"65c36696685cb7109e82deb6\"\n            },\n            \"dateCreated\": \"2024-02-06T21:52:43.287Z\",\n            \"dateModified\": \"2024-02-07T11:16:38.277Z\",\n            \"licenseIds\": [],\n            \"licenses\": [],\n            \"supplier\": null,\n            \"type\": \"container\",\n            \"versionMajor\": \"256\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"latestSbomForThisVersion\": [\n                {\n                    \"_id\": \"65c2aa271ae9f3a2f69ebdcf\",\n                    \"organizationAssetId\": \"65c2aa2b992235af975ad562\"\n                }\n            ],\n            \"organizationAssetId\": \"65c2aa2b992235af975ad562\"\n        }\n    ]\n}"}],"_postman_id":"985f4598-4cfb-478c-ad4f-12cfaacc43be"},{"name":"Fetch An Asset's Riskiest Components","id":"53242c94-cf1f-42cb-ba8c-cf3c81d68e36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/asset/:organizationAssetId/riskiestComponents?count=10","description":"<p>Fetch an asset's top 10 riskiest components. This route requires an AssetID</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:asset</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["asset",":organizationAssetId","riskiestComponents"],"host":["{{apiUrl}}"],"query":[{"key":"count","value":"10"}],"variable":[{"type":"any","value":"6462d44e094ebcb87dca05c1","key":"organizationAssetId"}]}},"response":[{"id":"57c19802-655a-4b3c-a536-747e9c3d876f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/asset/:assetId/:organizationId","host":["{{apiUrl}}"],"path":["asset",":assetId",":organizationId"],"query":[{"key":"assetId","value":"assetId","description":"Optional. Confine results to a specific Asset ID.","type":"text","disabled":true},{"key":"componentIds","value":"componentId1, componentId2","description":"Optional. Confine results to 1 or more component ID's (comma-separated).","type":"text","disabled":true},{"key":"packageUrls","value":"pkg:npm/@cyclonedx/cyclonedx-npm@1.0.0-beta.8","description":"Optional. Confine results to 1 or more packageUrls (comma-separated)","disabled":true},{"key":"packageUrlNoVersion","value":"axios","description":"Optional. Confine results to those including this packageUrl (without a version)","disabled":true},{"key":"version","value":"1.0.0-beta.8","description":"Optional. Confine results to those including this version","disabled":true},{"key":"versionMajor","value":"1","description":"Optional. Confine results to those including this major version (semver).","disabled":true},{"key":"versionMinor","value":"0","description":"Optional. Confine results to those including this minor version (semver).","disabled":true},{"key":"versionPatch","value":"0","description":"Optional. Confine results to those including this patch version (semver).","disabled":true},{"key":"coordinates","value":"pkg:npm/@cyclonedx/cyclonedx-npm@1.0.0-beta.8","description":"Optional. Confine results to those including these coordinates (Package URL format)","disabled":true},{"key":"page","value":"2","description":"Optional, defaults to 1. Fetch a specifc page of results (based on limit)","disabled":true},{"key":"limit","value":"1","description":"Optional, defaults to 100. Limit results per page. Max per page is 1000.","disabled":true},{"key":"sort","value":"{ name: 1, _id: 1 }","description":"Optional. Object of fields and order (1 asc, -1 desc) to sort based on. Available fields include any fields found on a single Component.","type":"text","disabled":true}],"variable":[{"key":"assetId","value":"some-id-here","description":"Asset ID to fetch."},{"key":"organizationId","value":"your-organization-id","description":"ID of organization to view as (likely your own)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Feb 2023 06:50:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1457"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"5b1-CtnDNLbgXaG+P7wQQaY1+Sz4fm0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"organizationAsset\": {\n                \"_id\": \"some-id-here\",\n                \"assetId\": \"some-id-here\",\n                \"organizationId\": \"some-id-here\",\n                \"__v\": 0,\n                \"countVulnerabilities\": {\n                    \"critical\": 0,\n                    \"high\": 1,\n                    \"medium\": 0,\n                    \"low\": 0,\n                    \"info\": 0,\n                    \"total\": 1,\n                    \"_id\": \"some-id-here\"\n                },\n                \"dateCreated\": \"2023-02-06T17:17:26.713Z\",\n                \"dateModified\": \"2023-02-06T17:46:42.520Z\",\n                \"derivedEcosystem\": \"npm\",\n                \"isVulnerable\": true,\n                \"relationshipToOrg\": \"first\"\n            },\n            \"_id\": \"some-id-here\",\n            \"packageUrlNoVersion\": \"pkg:npm/manifest-web-app\",\n            \"version\": \"0.5.61\",\n            \"__v\": 0,\n            \"author\": \"Manifest Engineering <engineering@manifestcyber.com>\",\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/manifest-web-app@0.5.61\",\n            \"copyright\": null,\n            \"countVulnerabilities\": {\n                \"critical\": 0,\n                \"high\": 1,\n                \"medium\": 0,\n                \"low\": 0,\n                \"info\": 0,\n                \"total\": 1,\n                \"_id\": \"some-id-here\"\n            },\n            \"dateCreated\": \"2023-02-06T17:17:26.677Z\",\n            \"dateModified\": \"2023-02-06T17:46:42.648Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"manifest-web-app\",\n            \"hashes\": [],\n            \"isVulnerable\": true,\n            \"lastVulnerabilityScan\": null,\n            \"licenses\": [],\n            \"name\": \"manifest-web-app\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/manifest-web-app@0.5.61\",\n            \"publisher\": null,\n            \"references\": [\n                {\n                    \"type\": \"vcs\",\n                    \"url\": \"git@github.com:manifest-cyber/web-app.git\",\n                    \"_id\": \"some-id-here\"\n                }\n            ],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"application\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"61\"\n        }\n    ]\n}"}],"_postman_id":"53242c94-cf1f-42cb-ba8c-cf3c81d68e36"},{"name":"Export Vulnerability Disclosure Report","id":"175ee776-6ea9-475c-b91f-cde77f27c570","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/asset/exportVulnerability?redirect=0&format=csv&organizationAssetId=assetId","description":"<p>Use this endpoint to export a Vulnerability Disclosure Report (VDR) for a given Asset.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:asset-vdr-report</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["asset","exportVulnerability"],"host":["{{apiUrl}}"],"query":[{"description":{"content":"<p>Optionally redirect the request to target file (may need to enable or disable based on how you make this request)</p>\n","type":"text/plain"},"key":"redirect","value":"0"},{"description":{"content":"<p>Format to export as. CSV is currently supported.</p>\n","type":"text/plain"},"key":"format","value":"csv"},{"description":{"content":"<p>The target asset ID to export VDR for.</p>\n","type":"text/plain"},"key":"organizationAssetId","value":"assetId"}],"variable":[]}},"response":[],"_postman_id":"175ee776-6ea9-475c-b91f-cde77f27c570"}],"id":"77c9a387-12de-48a5-a823-2bf8dc596c36","_postman_id":"77c9a387-12de-48a5-a823-2bf8dc596c36","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Assets","item":[{"name":"Fetch Assets","id":"60bf2229-edc5-4f2b-8e37-6132f2eac032","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/assets?filters=[{\"field\":\"assetComponentVersionFilter\",\"value\":{\"filter\":[{\"component\":\"test\",\"version\":\"<=2.0.0\"},{\"component\":\"test2\",\"version\":\">1.0.0\"}],\"operator\":\"OR\"}}]","description":"<p>Fetch a list of all assets (paginated) for an organization. Results may be further refined through optional <code>filters</code> parameter(s).</p>\n<p>Filters on this route are preset (unlike some other routes). Available values for <code>filter[i].field</code> :</p>\n<ul>\n<li><p><code>onlyCriticalVulns</code>: Boolean. If true, only assets/versions that include critical vulnerabilities will be shown.</p>\n</li>\n<li><p><code>onlyHasVulns</code>: Boolean. If true, will only include assets/versions that have vulnerabilities.</p>\n</li>\n<li><p><code>onlyFirstParty</code>: Boolean. If true, will only include first-party assets/versions.</p>\n</li>\n<li><p><code>onlyThirdParty</code>: Boolean. If true, will only include third-party assets/versions.</p>\n</li>\n<li><p><code>cvssSeverity</code>: Array[string]. Only include assets/versions that have vulnerabilities with one or more of the given severities. Options: <code>critical</code>, <code>high</code>, <code>medium</code>, <code>low</code>, <code>info</code>.</p>\n</li>\n<li><p><code>cvssScore</code>: Array[min,max]. Only include assets/versions that have vulnerabilities with a CVSS score in the given min/max range.</p>\n</li>\n<li><p><code>assetSupplier</code>: Array[string]. Only include assets/versions that have a <code>supplier.name</code> matching one or more (OR, not AND) of the given values.</p>\n</li>\n<li><p><code>assetType</code>: Array[string]. Only include assets/versions that have a type matching one or more (OR, not AND) of the given values. Options: <code>application</code>, <code>container</code>, <code>file</code>, <code>library</code>, <code>operating-system</code>, <code>firmware</code>, <code>device</code>, <code>other</code>.</p>\n</li>\n<li><p><code>labels</code>: Array[string]. Array of comma separated label ID string.</p>\n</li>\n<li><p><code>riskScore</code>: Array[string]. Returns assets/versions that have the listed risk score. Options: <code>high</code>, <code>medium</code>, <code>low</code>.</p>\n</li>\n<li><p><code>assetActive</code>: Array[boolean]. Only include assets with an <code>isActive</code> value matching one of the values in the array (OR, not AND).</p>\n</li>\n<li><p><code>textSearch</code>: Array[string]. Array of comma separated search terms. Search terms can be exact string or substrings. Results will include all assets where each search term is present in one or more of the following fields: name, version, author, supplier, SBOM format, SBOM version, SBOM type (e.g. application, file). Example to search for an asset with name <code>example</code> and version <code>1.2.3</code>: <code>{{apiUrl}}/assets?filters=[{\"field\":\"textSearch\",\"value\":[\"example\",\"1.2.3\"]}]</code></p>\n</li>\n<li><p><code>assetComponentVersionFilter</code>: Array[object]. To filter assets by one or more components, set the \"value\" to an array of component filter objects. Each object should contain a component name [required] and an optional version constraint. Supported version constraints include &gt;, &gt;=, ==, &lt;, &lt;=. If no version is provided, the assets returned will contain all versions of the specified component. Versions are compared using semver logic. If the supplied version is not a valid semver, the input must be an exact match.<br />  Across all component filter objects in the array, users can choose to 'OR' or 'AND' them using the \"operator\" flag (default is 'OR'). 'OR' will return assets containing any of the component versions entered where as using 'AND' will only return the assets that contain all the components in the filter array.</p>\n<p>  Example to search for assets with axios greater than version 0.21.1 and all versions of react:<br />  filters=[{\"field\":\"assetComponentVersionFilter\",\"value\": {\"filter\": [{\"component\":\"axios\", \"version\":\"&gt;1.2.3\"},{\"component\":\"react\"}],\"operator\":\"OR\"}} ]</p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:asset</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["assets"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Option: Fetch multiple assets (comma separated). if not supplied, will return all assets for your organization.</p>\n","type":"text/plain"},"key":"assetIds","value":"assetId1, assetId2"},{"disabled":true,"description":{"content":"<p>Optional, defaults to 1. Fetch a specifc page of results (based on limit)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Optional, defaults to 100. Limit results per page. Max per page is 1000.</p>\n","type":"text/plain"},"key":"limit","value":"3"},{"key":"filters","value":"[{\"field\":\"assetComponentVersionFilter\",\"value\":{\"filter\":[{\"component\":\"test\",\"version\":\"<=2.0.0\"},{\"component\":\"test2\",\"version\":\">1.0.0\"}],\"operator\":\"OR\"}}]"}],"variable":[]}},"response":[{"id":"f853fe3a-ec36-4e2c-b52d-2031892eafc2","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/assets?limit=3","host":["{{apiUrl}}"],"path":["assets"],"query":[{"key":"assetIds","value":"assetId1, assetId2","description":"Option: Fetch multiple assets (comma separated). if not supplied, will return all assets for your organization.","disabled":true},{"key":"page","value":"1","description":"Pagination: Page to fetch","disabled":true},{"key":"limit","value":"3","description":"Pagination: Number of results per page.  Max 1000. Default 100."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Feb 2023 15:30:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2509"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"9cd-4vdvAz4FuXyUp8C9zEcU+hHFN34\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"queryInfo\": {\n        \"page\": 1,\n        \"limit\": 1,\n        \"totalReturn\": 1,\n        \"totalCount\": 29019\n    },\n    \"data\": [\n        {\n            \"_id\": \"639b2d010aeb0dbf788b8e46\",\n            \"packageUrlNoVersion\": \"./example-python\",\n            \"version\": \"0.12.2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"./example-python@0.12.2\",\n            \"copyright\": null,\n            \"countVulnerabilities\": {\n                \"critical\": 6,\n                \"high\": 178,\n                \"medium\": 157,\n                \"low\": 2,\n                \"info\": 0,\n                \"total\": 343,\n                \"_id\": \"63e13d02e0bca1cb6ee12bf5\"\n            },\n            \"dateCreated\": \"2022-12-15T14:19:45.506Z\",\n            \"dateModified\": \"2023-02-06T17:46:42.648Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": null,\n            \"description\": null,\n            \"fullyQualifiedName\": \"./example-python\",\n            \"hashes\": [],\n            \"isVulnerable\": true,\n            \"lastVulnerabilityScan\": null,\n            \"licenses\": [],\n            \"name\": \"./example-python\",\n            \"packageGroup\": null,\n            \"packageUrl\": null,\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"file\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"2\"\n        }\n    ]\n}"},{"id":"6c0354aa-7f7e-4b7b-9426-9036f43b2947","name":"Fetch Assets","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/assets","host":["{{apiUrl}}"],"path":["assets"],"query":[{"key":"assetIds","value":"assetId1, assetId2","description":"Option: Fetch multiple assets (comma separated). if not supplied, will return all assets for your organization.","disabled":true},{"key":"page","value":"1","description":"Optional, defaults to 1. Fetch a specifc page of results (based on limit)","disabled":true},{"key":"limit","value":"3","description":"Optional, defaults to 100. Limit results per page. Max per page is 1000.","disabled":true},{"key":"filters","value":"[{\"field\":\"assetComponentVersionFilter\",\"value\":{\"filter\":[{\"component\":\"certifi\"},{\"component\":\"certifi\"}],\"operator\":\"OR\"}}]","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"7344"},{"key":"ETag","value":"W/\"1cb0-/ZrqriDwHal3amYPIqikvPRBm/o\""},{"key":"Date","value":"Thu, 17 Oct 2024 19:32:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"queryInfo\": {\n        \"page\": 1,\n        \"limit\": 100,\n        \"totalReturn\": 3,\n        \"totalCount\": 3\n    },\n    \"data\": [\n        {\n            \"_id\": \"670ef180cec013f4245d56f9\",\n            \"asset\": {\n                \"_id\": \"670ef180cec013f4245d56f9\",\n                \"packageUrlNoVersion\": \"backend-web\",\n                \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                \"version\": \"ca9f4d2b9d53b2ec37ea3051e6e3045f\",\n                \"__v\": 0,\n                \"author\": null,\n                \"authors\": [],\n                \"bomFormat\": \"SPDX\",\n                \"bomFormatVersion\": \"SPDX-2.2\",\n                \"changeDate\": \"2024-02-06T23:37:19.828Z\",\n                \"changeMade\": true,\n                \"commitVersionHash\": null,\n                \"containerName\": null,\n                \"coordinates\": \"backend-web@Wed Oct 16 2024 00:49:34 GMT+0200 (Central European Summer Time)\",\n                \"copyright\": null,\n                \"countLicenseIssues\": {\n                    \"alert\": 0,\n                    \"total\": 6,\n                    \"unknown\": 0,\n                    \"GPL-2.0-only\": 1,\n                    \"Copyleft\": 6,\n                    \"GPL-3.0-only\": 1,\n                    \"LGPL-2.1-only\": 1,\n                    \"LGPL-3.0-only\": 1,\n                    \"MPL-1.1\": 1,\n                    \"MPL-2.0\": 1\n                },\n                \"countVulnerabilities\": {\n                    \"critical\": 11,\n                    \"high\": 44,\n                    \"medium\": 66,\n                    \"low\": 3,\n                    \"info\": 25,\n                    \"total\": 149,\n                    \"mitigate\": 9,\n                    \"monitor\": 80,\n                    \"accept\": 60,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"67114d4f9c9daffb7a8e7184\"\n                },\n                \"cpes\": [],\n                \"dateCreated\": \"2024-10-15T22:49:36.923Z\",\n                \"dateModified\": \"2024-10-17T17:45:51.730Z\",\n                \"dependencyTree\": null,\n                \"derivedEcosystem\": \"49\",\n                \"description\": null,\n                \"ecosystem\": \"\",\n                \"fullyQualifiedName\": \"backend-web\",\n                \"hasFlatHierarchyGraph\": false,\n                \"hasNamespace\": false,\n                \"hashes\": [],\n                \"imageId\": null,\n                \"isActive\": true,\n                \"isDeleted\": false,\n                \"isRemoteOssOrigin\": null,\n                \"isVulnerable\": true,\n                \"labelIds\": [],\n                \"lastVulnerabilityScan\": null,\n                \"licenseIds\": [],\n                \"licenses\": [],\n                \"manufacturer\": null,\n                \"metadata\": null,\n                \"name\": \"backend-web\",\n                \"newAssetUploadNotificationSent\": false,\n                \"nonTriagedCountVulnerabilities\": {\n                    \"critical\": 11,\n                    \"high\": 44,\n                    \"medium\": 66,\n                    \"low\": 3,\n                    \"info\": 25,\n                    \"total\": 149,\n                    \"mitigate\": 9,\n                    \"monitor\": 80,\n                    \"accept\": 60,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"67114d4f9c9daffb7a8e7185\"\n                },\n                \"originatedFromEnrichedSbom\": false,\n                \"ossIngestId\": null,\n                \"packageGroup\": \"\",\n                \"packageUrl\": \"backend-web@Wed Oct 16 2024 00:49:34 GMT+0200 (Central European Summer Time)\",\n                \"publisher\": null,\n                \"purlParts\": null,\n                \"references\": [],\n                \"relationshipToOrg\": \"first\",\n                \"repoTags\": null,\n                \"resolvedCpes\": [],\n                \"riskScore\": \"high\",\n                \"scope\": null,\n                \"supplier\": null,\n                \"ticketIds\": [],\n                \"type\": \"library\",\n                \"uploadByVendor\": null,\n                \"vendorName\": [],\n                \"vendorSourceSbom\": null,\n                \"versionMajor\": \"16\",\n                \"versionMinor\": \"0\",\n                \"versionPatch\": \"0\",\n                \"sharedOnPortal\": true,\n                \"licensesData\": []\n            },\n            \"matchedComponents\": [\n                {\n                    \"name\": \"certifi\",\n                    \"version\": \"2023.7.22\",\n                    \"_id\": \"65c2aa2b992235af975ad5b8\"\n                },\n                {\n                    \"name\": \"certifi\",\n                    \"version\": \"2024.6.2\",\n                    \"_id\": \"66fee1136001e7b92e9bc14d\"\n                }\n            ],\n            \"totalCount\": 3,\n            \"riskScoreNum\": 0,\n            \"countLicenseIssues\": {},\n            \"assetId\": \"670ef180cec013f4245d56f9\",\n            \"sbomId\": \"670ef17eb27f8207c05bade4\"\n        },\n        {\n            \"_id\": \"670f9282cec013f4248c3ca5\",\n            \"asset\": {\n                \"_id\": \"670f9282cec013f4248c3ca5\",\n                \"packageUrlNoVersion\": \"backend-web\",\n                \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                \"version\": \"ca9f4d2b9d53b2ec37ea3051e6e3045f\",\n                \"__v\": 0,\n                \"author\": null,\n                \"authors\": [],\n                \"bomFormat\": \"SPDX\",\n                \"bomFormatVersion\": \"SPDX-2.2\",\n                \"changeDate\": \"2024-02-06T23:37:19.828Z\",\n                \"changeMade\": true,\n                \"commitVersionHash\": null,\n                \"containerName\": null,\n                \"coordinates\": \"backend-web@Wed Oct 16 2024 12:16:31 GMT+0200 (Central European Summer Time)\",\n                \"copyright\": null,\n                \"countLicenseIssues\": {\n                    \"alert\": 0,\n                    \"total\": 6,\n                    \"unknown\": 0,\n                    \"GPL-2.0-only\": 1,\n                    \"Copyleft\": 6,\n                    \"GPL-3.0-only\": 1,\n                    \"LGPL-2.1-only\": 1,\n                    \"LGPL-3.0-only\": 1,\n                    \"MPL-1.1\": 1,\n                    \"MPL-2.0\": 1\n                },\n                \"countVulnerabilities\": {\n                    \"critical\": 11,\n                    \"high\": 44,\n                    \"medium\": 66,\n                    \"low\": 3,\n                    \"info\": 25,\n                    \"total\": 149,\n                    \"mitigate\": 9,\n                    \"monitor\": 80,\n                    \"accept\": 60,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"671156d29c9daffb7a8e7da8\"\n                },\n                \"cpes\": [],\n                \"dateCreated\": \"2024-10-16T10:16:34.117Z\",\n                \"dateModified\": \"2024-10-17T18:26:26.550Z\",\n                \"dependencyTree\": null,\n                \"derivedEcosystem\": \"16\",\n                \"description\": null,\n                \"ecosystem\": \"\",\n                \"fullyQualifiedName\": \"backend-web\",\n                \"hasFlatHierarchyGraph\": false,\n                \"hasNamespace\": false,\n                \"hashes\": [],\n                \"imageId\": null,\n                \"isActive\": true,\n                \"isDeleted\": false,\n                \"isRemoteOssOrigin\": null,\n                \"isVulnerable\": true,\n                \"labelIds\": [],\n                \"lastVulnerabilityScan\": null,\n                \"licenseIds\": [],\n                \"licenses\": [],\n                \"manufacturer\": null,\n                \"metadata\": null,\n                \"name\": \"backend-web\",\n                \"newAssetUploadNotificationSent\": false,\n                \"nonTriagedCountVulnerabilities\": {\n                    \"critical\": 11,\n                    \"high\": 44,\n                    \"medium\": 66,\n                    \"low\": 3,\n                    \"info\": 25,\n                    \"total\": 149,\n                    \"mitigate\": 9,\n                    \"monitor\": 80,\n                    \"accept\": 60,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"671156d29c9daffb7a8e7da9\"\n                },\n                \"originatedFromEnrichedSbom\": false,\n                \"ossIngestId\": null,\n                \"packageGroup\": \"\",\n                \"packageUrl\": \"backend-web@Wed Oct 16 2024 12:16:31 GMT+0200 (Central European Summer Time)\",\n                \"publisher\": null,\n                \"purlParts\": null,\n                \"references\": [],\n                \"relationshipToOrg\": \"first\",\n                \"repoTags\": null,\n                \"resolvedCpes\": [],\n                \"riskScore\": \"high\",\n                \"scope\": null,\n                \"supplier\": null,\n                \"ticketIds\": [],\n                \"type\": \"library\",\n                \"uploadByVendor\": null,\n                \"vendorName\": [],\n                \"vendorSourceSbom\": null,\n                \"versionMajor\": \"16\",\n                \"versionMinor\": \"0\",\n                \"versionPatch\": \"0\",\n                \"sharedOnPortal\": true,\n                \"licensesData\": []\n            },\n            \"matchedComponents\": [\n                {\n                    \"name\": \"certifi\",\n                    \"version\": \"2023.7.22\",\n                    \"_id\": \"65c2aa2b992235af975ad5b8\"\n                },\n                {\n                    \"name\": \"certifi\",\n                    \"version\": \"2024.6.2\",\n                    \"_id\": \"66fee1136001e7b92e9bc14d\"\n                }\n            ],\n            \"totalCount\": 3,\n            \"riskScoreNum\": 0,\n            \"countLicenseIssues\": {},\n            \"assetId\": \"670f9282cec013f4248c3ca5\",\n            \"sbomId\": \"670f927fb27f8207c05cc854\"\n        },\n        {\n            \"_id\": \"67113248cec013f424804e22\",\n            \"asset\": {\n                \"_id\": \"67113248cec013f424804e22\",\n                \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n                \"packageUrlNoVersion\": \"backend-web\",\n                \"version\": \"Thu Oct 17 2024 15:50:29 GMT+0000 (Coordinated Universal Time)\",\n                \"__v\": 0,\n                \"author\": null,\n                \"authors\": [],\n                \"bomFormat\": \"SPDX\",\n                \"bomFormatVersion\": \"SPDX-2.2\",\n                \"changeDate\": \"2024-02-06T23:37:19.828Z\",\n                \"changeMade\": true,\n                \"commitVersionHash\": null,\n                \"containerName\": null,\n                \"coordinates\": \"backend-web@Thu Oct 17 2024 15:50:29 GMT+0000 (Coordinated Universal Time)\",\n                \"copyright\": null,\n                \"countLicenseIssues\": {\n                    \"alert\": 0,\n                    \"total\": 6,\n                    \"unknown\": 0,\n                    \"GPL-2.0-only\": 1,\n                    \"Copyleft\": 6,\n                    \"GPL-3.0-only\": 1,\n                    \"LGPL-2.1-only\": 1,\n                    \"LGPL-3.0-only\": 1,\n                    \"MPL-1.1\": 1,\n                    \"MPL-2.0\": 1\n                },\n                \"countVulnerabilities\": {\n                    \"critical\": 11,\n                    \"high\": 44,\n                    \"medium\": 66,\n                    \"low\": 3,\n                    \"info\": 25,\n                    \"total\": 149,\n                    \"mitigate\": 9,\n                    \"monitor\": 80,\n                    \"accept\": 60,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"6711337b9c9daffb7a8e6b7a\"\n                },\n                \"cpes\": [],\n                \"dateCreated\": \"2024-10-17T15:50:32.230Z\",\n                \"dateModified\": \"2024-10-17T18:19:30.079Z\",\n                \"dependencyTree\": null,\n                \"derivedEcosystem\": \"50\",\n                \"description\": null,\n                \"ecosystem\": \"\",\n                \"fullyQualifiedName\": \"backend-web\",\n                \"hasFlatHierarchyGraph\": false,\n                \"hasNamespace\": false,\n                \"hashes\": [],\n                \"imageId\": null,\n                \"isActive\": true,\n                \"isDeleted\": false,\n                \"isRemoteOssOrigin\": null,\n                \"isVulnerable\": true,\n                \"labelIds\": [],\n                \"lastVulnerabilityScan\": null,\n                \"licenseIds\": [],\n                \"licenses\": [],\n                \"manufacturer\": null,\n                \"metadata\": null,\n                \"name\": \"backend-web\",\n                \"newAssetUploadNotificationSent\": false,\n                \"nonTriagedCountVulnerabilities\": {\n                    \"critical\": 11,\n                    \"high\": 44,\n                    \"medium\": 66,\n                    \"low\": 3,\n                    \"info\": 25,\n                    \"total\": 149,\n                    \"mitigate\": 9,\n                    \"monitor\": 80,\n                    \"accept\": 60,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"6711337b9c9daffb7a8e6b7b\"\n                },\n                \"originatedFromEnrichedSbom\": false,\n                \"ossIngestId\": null,\n                \"packageGroup\": \"\",\n                \"packageUrl\": \"backend-web@Thu Oct 17 2024 15:50:29 GMT+0000 (Coordinated Universal Time)\",\n                \"publisher\": null,\n                \"purlParts\": null,\n                \"references\": [],\n                \"relationshipToOrg\": \"first\",\n                \"repoTags\": null,\n                \"resolvedCpes\": [],\n                \"riskScore\": \"high\",\n                \"scope\": null,\n                \"supplier\": null,\n                \"ticketIds\": [],\n                \"type\": \"library\",\n                \"uploadByVendor\": null,\n                \"vendorName\": [],\n                \"vendorSourceSbom\": null,\n                \"versionMajor\": \"17\",\n                \"versionMinor\": \"0\",\n                \"versionPatch\": \"0\",\n                \"sharedOnPortal\": true,\n                \"licensesData\": []\n            },\n            \"matchedComponents\": [\n                {\n                    \"name\": \"certifi\",\n                    \"version\": \"2023.7.22\",\n                    \"_id\": \"65c2aa2b992235af975ad5b8\"\n                },\n                {\n                    \"name\": \"certifi\",\n                    \"version\": \"2024.6.2\",\n                    \"_id\": \"66fee1136001e7b92e9bc14d\"\n                }\n            ],\n            \"totalCount\": 3,\n            \"riskScoreNum\": 0,\n            \"countLicenseIssues\": {},\n            \"assetId\": \"67113248cec013f424804e22\",\n            \"sbomId\": \"67113245b27f8207c060a040\"\n        }\n    ],\n    \"errors\": []\n}"},{"id":"057cad50-76d5-4374-a798-e2e5c73ffaa9","name":"Fetch Assets by component version filter example response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/assets?filters=[{\"field\":\"assetComponentVersionFilter\",\"value\":{\"filter\":[{\"component\":\"test\",\"version\":\"<=2.0.0\"},{\"component\":\"test2\",\"version\":\">1.0.0\"}],\"operator\":\"OR\"}}]","host":["{{apiUrl}}"],"path":["assets"],"query":[{"key":"assetIds","value":"assetId1, assetId2","description":"Option: Fetch multiple assets (comma separated). if not supplied, will return all assets for your organization.","disabled":true},{"key":"page","value":"1","description":"Optional, defaults to 1. Fetch a specifc page of results (based on limit)","disabled":true},{"key":"limit","value":"3","description":"Optional, defaults to 100. Limit results per page. Max per page is 1000.","disabled":true},{"key":"filters","value":"[{\"field\":\"assetComponentVersionFilter\",\"value\":{\"filter\":[{\"component\":\"test\",\"version\":\"<=2.0.0\"},{\"component\":\"test2\",\"version\":\">1.0.0\"}],\"operator\":\"OR\"}}]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"7276"},{"key":"ETag","value":"W/\"1c6c-+yHpfwzoDaH/NKiYptdJ2b4PRe0\""},{"key":"Date","value":"Mon, 21 Oct 2024 20:26:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"queryInfo\": {\n        \"page\": 1,\n        \"limit\": 100,\n        \"totalReturn\": 3,\n        \"totalCount\": 3\n    },\n    \"data\": [\n        {\n            \"_id\": \"67168e3ecec013f424a1ab79\",\n            \"asset\": {\n                \"_id\": \"67168e3ecec013f424a1ab79\",\n                \"organizationId\": \"66438daa37c9915268d70785\",\n                \"packageUrlNoVersion\": \"pkg:rubygems/manitest/asset1\",\n                \"version\": \"1.1.6\",\n                \"__v\": 0,\n                \"author\": null,\n                \"authors\": [\n                    {\n                        \"_id\": \"67168e3e0a843eed1ed092f4\"\n                    }\n                ],\n                \"bomFormat\": \"CycloneDX\",\n                \"bomFormatVersion\": \"1.6\",\n                \"changeDate\": null,\n                \"changeMade\": false,\n                \"commitVersionHash\": null,\n                \"containerName\": null,\n                \"coordinates\": \"pkg:rubygems/manitest/asset1@1.1.6\",\n                \"copyright\": null,\n                \"countLicenseIssues\": {\n                    \"alert\": 0,\n                    \"total\": 0,\n                    \"unknown\": 0\n                },\n                \"countVulnerabilities\": {\n                    \"critical\": 0,\n                    \"high\": 0,\n                    \"medium\": 176,\n                    \"low\": 0,\n                    \"info\": 0,\n                    \"total\": 176,\n                    \"mitigate\": 0,\n                    \"monitor\": 0,\n                    \"accept\": 176,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"67168e42276d8247d543a06c\"\n                },\n                \"cpes\": [],\n                \"dateCreated\": \"2024-10-21T17:24:14.668Z\",\n                \"dateModified\": \"2024-10-21T17:24:18.899Z\",\n                \"dependencyTree\": null,\n                \"derivedEcosystem\": \"rubygems\",\n                \"description\": null,\n                \"ecosystem\": \"rubygems\",\n                \"fullyQualifiedName\": \"Asset1\",\n                \"hasFlatHierarchyGraph\": false,\n                \"hasNamespace\": true,\n                \"hashes\": [],\n                \"imageId\": null,\n                \"isActive\": true,\n                \"isDeleted\": false,\n                \"isRemoteOssOrigin\": null,\n                \"isVulnerable\": true,\n                \"labelIds\": [],\n                \"lastVulnerabilityScan\": null,\n                \"licenseIds\": [],\n                \"licenses\": [],\n                \"manufacturer\": null,\n                \"metadata\": null,\n                \"name\": \"Asset1\",\n                \"newAssetUploadNotificationSent\": false,\n                \"nonTriagedCountVulnerabilities\": {\n                    \"critical\": 0,\n                    \"high\": 0,\n                    \"medium\": 176,\n                    \"low\": 0,\n                    \"info\": 0,\n                    \"total\": 176,\n                    \"mitigate\": 0,\n                    \"monitor\": 0,\n                    \"accept\": 176,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"67168e42276d8247d543a06d\"\n                },\n                \"originatedFromEnrichedSbom\": false,\n                \"ossIngestId\": null,\n                \"packageGroup\": \"\",\n                \"packageUrl\": \"pkg:rubygems/manitest/asset1@1.1.6\",\n                \"publisher\": null,\n                \"purlParts\": {\n                    \"ecosystem\": \"rubygems\",\n                    \"namespace\": \"manitest\",\n                    \"name\": \"asset1\",\n                    \"version\": \"1.1.6\",\n                    \"subpath\": \"\",\n                    \"rawPurl\": \"pkg:rubygems/manitest/asset1@1.1.6\",\n                    \"vendorName\": \"manitest\",\n                    \"vendorNameAliases\": [],\n                    \"validation\": {\n                        \"isValid\": true,\n                        \"validationErrors\": []\n                    },\n                    \"_id\": \"67168e3e0a843eed1ed092f5\"\n                },\n                \"references\": [],\n                \"relationshipToOrg\": \"first\",\n                \"repoTags\": null,\n                \"resolvedCpes\": [],\n                \"riskScore\": \"low\",\n                \"scope\": null,\n                \"supplier\": null,\n                \"ticketIds\": [],\n                \"type\": \"library\",\n                \"uploadByVendor\": null,\n                \"vendorName\": [\n                    \"manitest\"\n                ],\n                \"vendorSourceSbom\": null,\n                \"versionMajor\": \"1\",\n                \"versionMinor\": \"1\",\n                \"versionPatch\": \"6\",\n                \"licensesData\": []\n            },\n            \"matchedComponents\": [\n                {\n                    \"name\": \"test\",\n                    \"version\": \"1.0.0\",\n                    \"_id\": \"67168e3ecec013f424a1ab93\"\n                }\n            ],\n            \"totalCount\": 3,\n            \"riskScoreNum\": 0,\n            \"countLicenseIssues\": {},\n            \"assetId\": \"67168e3ecec013f424a1ab79\",\n            \"sbomId\": \"67168e3e8ac3ff422e6d9764\"\n        },\n        {\n            \"_id\": \"67168e3fcec013f424a1ac31\",\n            \"asset\": {\n                \"_id\": \"67168e3fcec013f424a1ac31\",\n                \"organizationId\": \"66438daa37c9915268d70785\",\n                \"version\": \"9.6.6\",\n                \"packageUrlNoVersion\": \"pkg:rubygems/manitest/asset2\",\n                \"__v\": 0,\n                \"author\": null,\n                \"authors\": [\n                    {\n                        \"_id\": \"67168e3f0a843eed1ed09311\"\n                    }\n                ],\n                \"bomFormat\": \"CycloneDX\",\n                \"bomFormatVersion\": \"1.6\",\n                \"changeDate\": null,\n                \"changeMade\": false,\n                \"commitVersionHash\": null,\n                \"containerName\": null,\n                \"coordinates\": \"pkg:rubygems/manitest/asset2@9.6.6\",\n                \"copyright\": null,\n                \"countLicenseIssues\": {\n                    \"alert\": 0,\n                    \"total\": 0,\n                    \"unknown\": 0\n                },\n                \"countVulnerabilities\": {\n                    \"critical\": 0,\n                    \"high\": 0,\n                    \"medium\": 176,\n                    \"low\": 0,\n                    \"info\": 0,\n                    \"total\": 176,\n                    \"mitigate\": 0,\n                    \"monitor\": 0,\n                    \"accept\": 176,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"67168e43276d8247d543a086\"\n                },\n                \"cpes\": [],\n                \"dateCreated\": \"2024-10-21T17:24:15.025Z\",\n                \"dateModified\": \"2024-10-21T17:24:19.806Z\",\n                \"dependencyTree\": null,\n                \"derivedEcosystem\": \"rubygems\",\n                \"description\": null,\n                \"ecosystem\": \"rubygems\",\n                \"fullyQualifiedName\": \"Asset2\",\n                \"hasFlatHierarchyGraph\": false,\n                \"hasNamespace\": true,\n                \"hashes\": [],\n                \"imageId\": null,\n                \"isActive\": true,\n                \"isDeleted\": false,\n                \"isRemoteOssOrigin\": null,\n                \"isVulnerable\": true,\n                \"labelIds\": [],\n                \"lastVulnerabilityScan\": null,\n                \"licenseIds\": [],\n                \"licenses\": [],\n                \"manufacturer\": null,\n                \"metadata\": null,\n                \"name\": \"Asset2\",\n                \"newAssetUploadNotificationSent\": false,\n                \"nonTriagedCountVulnerabilities\": {\n                    \"critical\": 0,\n                    \"high\": 0,\n                    \"medium\": 176,\n                    \"low\": 0,\n                    \"info\": 0,\n                    \"total\": 176,\n                    \"mitigate\": 0,\n                    \"monitor\": 0,\n                    \"accept\": 176,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"67168e43276d8247d543a087\"\n                },\n                \"originatedFromEnrichedSbom\": false,\n                \"ossIngestId\": null,\n                \"packageGroup\": \"\",\n                \"packageUrl\": \"pkg:rubygems/manitest/asset2@9.6.6\",\n                \"publisher\": null,\n                \"purlParts\": {\n                    \"ecosystem\": \"rubygems\",\n                    \"namespace\": \"manitest\",\n                    \"name\": \"asset2\",\n                    \"version\": \"9.6.6\",\n                    \"subpath\": \"\",\n                    \"rawPurl\": \"pkg:rubygems/manitest/asset2@9.6.6\",\n                    \"vendorName\": \"manitest\",\n                    \"vendorNameAliases\": [],\n                    \"validation\": {\n                        \"isValid\": true,\n                        \"validationErrors\": []\n                    },\n                    \"_id\": \"67168e3f0a843eed1ed09312\"\n                },\n                \"references\": [],\n                \"relationshipToOrg\": \"first\",\n                \"repoTags\": null,\n                \"resolvedCpes\": [],\n                \"riskScore\": \"low\",\n                \"scope\": null,\n                \"supplier\": null,\n                \"ticketIds\": [],\n                \"type\": \"library\",\n                \"uploadByVendor\": null,\n                \"vendorName\": [\n                    \"manitest\"\n                ],\n                \"vendorSourceSbom\": null,\n                \"versionMajor\": \"9\",\n                \"versionMinor\": \"6\",\n                \"versionPatch\": \"6\",\n                \"licensesData\": []\n            },\n            \"matchedComponents\": [\n                {\n                    \"name\": \"test\",\n                    \"version\": \"1.1.0\",\n                    \"_id\": \"67168e3fcec013f424a1ac4c\"\n                }\n            ],\n            \"totalCount\": 3,\n            \"riskScoreNum\": 0,\n            \"countLicenseIssues\": {},\n            \"assetId\": \"67168e3fcec013f424a1ac31\",\n            \"sbomId\": \"67168e3e8ac3ff422e6d9770\"\n        },\n        {\n            \"_id\": \"67168e3fcec013f424a1acde\",\n            \"asset\": {\n                \"_id\": \"67168e3fcec013f424a1acde\",\n                \"packageUrlNoVersion\": \"pkg:rubygems/manitest/asset3\",\n                \"organizationId\": \"66438daa37c9915268d70785\",\n                \"version\": \"4.6.8\",\n                \"__v\": 0,\n                \"author\": null,\n                \"authors\": [\n                    {\n                        \"_id\": \"67168e3f0a843eed1ed0932e\"\n                    }\n                ],\n                \"bomFormat\": \"CycloneDX\",\n                \"bomFormatVersion\": \"1.6\",\n                \"changeDate\": null,\n                \"changeMade\": false,\n                \"commitVersionHash\": null,\n                \"containerName\": null,\n                \"coordinates\": \"pkg:rubygems/manitest/asset3@4.6.8\",\n                \"copyright\": null,\n                \"countLicenseIssues\": {\n                    \"alert\": 0,\n                    \"total\": 0,\n                    \"unknown\": 0\n                },\n                \"countVulnerabilities\": {\n                    \"critical\": 0,\n                    \"high\": 0,\n                    \"medium\": 176,\n                    \"low\": 0,\n                    \"info\": 0,\n                    \"total\": 176,\n                    \"mitigate\": 0,\n                    \"monitor\": 0,\n                    \"accept\": 176,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"67168e44276d8247d543a0a0\"\n                },\n                \"cpes\": [],\n                \"dateCreated\": \"2024-10-21T17:24:15.304Z\",\n                \"dateModified\": \"2024-10-21T17:24:20.514Z\",\n                \"dependencyTree\": null,\n                \"derivedEcosystem\": \"rubygems\",\n                \"description\": null,\n                \"ecosystem\": \"rubygems\",\n                \"fullyQualifiedName\": \"Asset3\",\n                \"hasFlatHierarchyGraph\": false,\n                \"hasNamespace\": true,\n                \"hashes\": [],\n                \"imageId\": null,\n                \"isActive\": true,\n                \"isDeleted\": false,\n                \"isRemoteOssOrigin\": null,\n                \"isVulnerable\": true,\n                \"labelIds\": [],\n                \"lastVulnerabilityScan\": null,\n                \"licenseIds\": [],\n                \"licenses\": [],\n                \"manufacturer\": null,\n                \"metadata\": null,\n                \"name\": \"Asset3\",\n                \"newAssetUploadNotificationSent\": false,\n                \"nonTriagedCountVulnerabilities\": {\n                    \"critical\": 0,\n                    \"high\": 0,\n                    \"medium\": 176,\n                    \"low\": 0,\n                    \"info\": 0,\n                    \"total\": 176,\n                    \"mitigate\": 0,\n                    \"monitor\": 0,\n                    \"accept\": 176,\n                    \"inKEV\": 0,\n                    \"inKEVPreviously\": 0,\n                    \"_id\": \"67168e44276d8247d543a0a1\"\n                },\n                \"originatedFromEnrichedSbom\": false,\n                \"ossIngestId\": null,\n                \"packageGroup\": \"\",\n                \"packageUrl\": \"pkg:rubygems/manitest/asset3@4.6.8\",\n                \"publisher\": null,\n                \"purlParts\": {\n                    \"ecosystem\": \"rubygems\",\n                    \"namespace\": \"manitest\",\n                    \"name\": \"asset3\",\n                    \"version\": \"4.6.8\",\n                    \"subpath\": \"\",\n                    \"rawPurl\": \"pkg:rubygems/manitest/asset3@4.6.8\",\n                    \"vendorName\": \"manitest\",\n                    \"vendorNameAliases\": [],\n                    \"validation\": {\n                        \"isValid\": true,\n                        \"validationErrors\": []\n                    },\n                    \"_id\": \"67168e3f0a843eed1ed0932f\"\n                },\n                \"references\": [],\n                \"relationshipToOrg\": \"first\",\n                \"repoTags\": null,\n                \"resolvedCpes\": [],\n                \"riskScore\": \"low\",\n                \"scope\": null,\n                \"supplier\": null,\n                \"ticketIds\": [],\n                \"type\": \"library\",\n                \"uploadByVendor\": null,\n                \"vendorName\": [\n                    \"manitest\"\n                ],\n                \"vendorSourceSbom\": null,\n                \"versionMajor\": \"4\",\n                \"versionMinor\": \"6\",\n                \"versionPatch\": \"8\",\n                \"licensesData\": []\n            },\n            \"matchedComponents\": [\n                {\n                    \"name\": \"test\",\n                    \"version\": \"2.0.0\",\n                    \"_id\": \"67168e3fcec013f424a1acf8\"\n                }\n            ],\n            \"totalCount\": 3,\n            \"riskScoreNum\": 0,\n            \"countLicenseIssues\": {},\n            \"assetId\": \"67168e3fcec013f424a1acde\",\n            \"sbomId\": \"67168e3f8ac3ff422e6d977c\"\n        }\n    ],\n    \"errors\": []\n}"}],"_postman_id":"60bf2229-edc5-4f2b-8e37-6132f2eac032"},{"name":"Most Impacted Assets","id":"f7bb36f4-967c-4f85-a9c6-62cd53189fd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/assets/most-impacted","description":"<p>Fetch a list of the 5 most impacted assets in an organization, based on risk score and vulnerabilities present.</p>\n<p>Avaialble filters on this route:</p>\n<ul>\n<li><p><code>onlyCriticalVulns</code>: Boolean. If true, only assets/versions that include critical vulnerabilities will be shown.</p>\n</li>\n<li><p><code>onlyHasVulns</code>: Boolean. If true, will only include assets/versions that have vulnerabilities.</p>\n</li>\n<li><p><code>onlyHasLicenseIssues</code>: Boolean.</p>\n</li>\n<li><p><code>cvssSeverity</code>: Array[string]. Only include assets/versions that have vulnerabilities with one or more of the given severities. Options: <code>critical</code>, <code>high</code>, <code>medium</code>, <code>low</code>, <code>info</code>.</p>\n</li>\n<li><p><code>cvssScore</code>: Array[min,max]. Only include assets/versions that have vulnerabilities with a CVSS score in the given min/max range.</p>\n</li>\n<li><p><code>assetSupplier</code>: Array[string]. Only include assets/versions that have a <code>supplier.name</code> matching one or more (OR, not AND) of the given values.</p>\n</li>\n<li><p><code>assetType</code>: Array[string]. Only include assets/versions that have a type matching one or more (OR, not AND) of the given values. Options: <code>application</code>, <code>container</code>, <code>file</code>, <code>library</code>, <code>operating-system</code>, <code>firmware</code>, <code>device</code>, <code>other</code>.</p>\n</li>\n<li><p><code>labels</code>: Array[string]. Array of comma separated label ID string.</p>\n</li>\n<li><p><code>riskScore</code>: Array[string]. Returns assets/versions that have the listed risk score. Options: <code>high</code>, <code>medium</code>, <code>low</code>.</p>\n</li>\n<li><p><code>assetActive</code>: Array[boolean]. Only include assets with an <code>isActive</code> value matching one of the values in the array (OR, not AND).</p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:asset</code>, <code>read:vulnerability</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["assets","most-impacted"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Option: Fetch multiple assets (comma separated). if not supplied, will return all assets for your organization.</p>\n","type":"text/plain"},"key":"assetIds","value":"assetId1, assetId2"},{"disabled":true,"description":{"content":"<p>Optional. Filter results based on one or more (applied additively) preset filters. This should be an array of objects with keys <code>field</code> and <code>value</code>.</p>\n","type":"text/plain"},"key":"filters","value":"[{ \"field\": \"onlyCriticalVulns\", \"value\": \"true\" }]"},{"disabled":true,"description":{"content":"<p>Optional, defaults to 1. Fetch a specifc page of results (based on limit)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Optional, defaults to 100. Limit results per page. Max per page is 1000.</p>\n","type":"text/plain"},"key":"limit","value":"3"}],"variable":[]}},"response":[{"id":"1e811992-b392-46c9-ba96-62678dc607e5","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/assets?limit=3","host":["{{apiUrl}}"],"path":["assets"],"query":[{"key":"assetIds","value":"assetId1, assetId2","description":"Option: Fetch multiple assets (comma separated). if not supplied, will return all assets for your organization.","disabled":true},{"key":"page","value":"1","description":"Pagination: Page to fetch","disabled":true},{"key":"limit","value":"3","description":"Pagination: Number of results per page.  Max 1000. Default 100."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Feb 2023 15:30:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2509"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"9cd-4vdvAz4FuXyUp8C9zEcU+hHFN34\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"queryInfo\": {\n        \"page\": 1,\n        \"limit\": 1,\n        \"totalReturn\": 1,\n        \"totalCount\": 29019\n    },\n    \"data\": [\n        {\n            \"_id\": \"639b2d010aeb0dbf788b8e46\",\n            \"packageUrlNoVersion\": \"./example-python\",\n            \"version\": \"0.12.2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"./example-python@0.12.2\",\n            \"copyright\": null,\n            \"countVulnerabilities\": {\n                \"critical\": 6,\n                \"high\": 178,\n                \"medium\": 157,\n                \"low\": 2,\n                \"info\": 0,\n                \"total\": 343,\n                \"_id\": \"63e13d02e0bca1cb6ee12bf5\"\n            },\n            \"dateCreated\": \"2022-12-15T14:19:45.506Z\",\n            \"dateModified\": \"2023-02-06T17:46:42.648Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": null,\n            \"description\": null,\n            \"fullyQualifiedName\": \"./example-python\",\n            \"hashes\": [],\n            \"isVulnerable\": true,\n            \"lastVulnerabilityScan\": null,\n            \"licenses\": [],\n            \"name\": \"./example-python\",\n            \"packageGroup\": null,\n            \"packageUrl\": null,\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"file\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"2\"\n        }\n    ]\n}"}],"_postman_id":"f7bb36f4-967c-4f85-a9c6-62cd53189fd2"},{"name":"Update labels for assets","id":"7a812e20-17f0-485f-a604-3d0d3311c1e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"labels\": {\n        \"66be1c0ae1cc6eb05af8b519\": [\n            // \"66fb63f76001e7b92e9c9b80\", \"66fb63f76001e7b92e9c9b80\"\n            \"64a587370b2c40c91597ee0f\",\"64a587370b2c40c91597ee0f\",\"64a587370b2c40c91597ee0f\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/assets/updateLabels","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:label</code> ,<code>update:asset</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["assets","updateLabels"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a812e20-17f0-485f-a604-3d0d3311c1e8"},{"name":"Update asset","id":"bd81c3ea-cbc0-4aa7-abaf-2442df6c6fe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"assets\": {\n        \"6462d544094ebcb87dd09ec3\": {\n            \"isActive\": false\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/assets/update","description":"<p>Update the attributes of one or more assets.</p>\n<p>POST body should be a JSON payload that includes the fields described below:</p>\n<ul>\n<li><p>assets: A map of asset attribute values, keyed by asset id.</p>\n<ul>\n<li>isActive: Optional, boolean that specifies whether the asset should be active or inactive.</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong><code>update:asset</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["assets","update"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd81c3ea-cbc0-4aa7-abaf-2442df6c6fe8"}],"id":"76c8aa25-e8b6-4c6f-8a5c-1ee739bd5f30","description":"<p>Routes specific to Assets.</p>\n","_postman_id":"76c8aa25-e8b6-4c6f-8a5c-1ee739bd5f30","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Component","item":[{"name":"Fetch Single Component","id":"0f5d996c-e39e-4324-b6ae-8fb4996d2ebc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/component/id/:componentid/:organizationId","description":"<p>Fetch a specific component based on ID. This will return the given component data, as well as a <code>versions</code> field with components matching other versions of this component.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:component</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["component","id",":componentid",":organizationId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of component to fetch</p>\n","type":"text/plain"},"type":"any","value":"some-component-id","key":"componentid"},{"description":{"content":"<p>Optional. ID of organization to fetch as (e.g. a child/parent org).</p>\n","type":"text/plain"},"type":"any","value":null,"key":"organizationId"}]}},"response":[],"_postman_id":"0f5d996c-e39e-4324-b6ae-8fb4996d2ebc"},{"name":"Fetch Component Riskiest Vulnerabilities","id":"bc01281d-957e-4cc0-b4f9-47caa382d1df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/component/riskiestVulnerabilities/:organizationComponentId","description":"<p>Fetch a component's riskiest vulnerabilities.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code> ,<code>read:component</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["component","riskiestVulnerabilities",":organizationComponentId"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"key":"count","value":"10"}],"variable":[{"type":"any","value":"6462d593094ebcb87dd23d33","key":"organizationComponentId"}]}},"response":[],"_postman_id":"bc01281d-957e-4cc0-b4f9-47caa382d1df"},{"name":"Fetch AssetList Based on a Component","id":"7db45e1b-220e-4520-a375-3d05c470aa21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/component/assetList?organizationComponentId=&assetComponentId=","description":"<p>Fetch the list of assets that contain a given Component ID.</p>\n<p>Avaialble filters on this route:</p>\n<ul>\n<li><code>assetActive</code>: Array[boolean]. Only include assets that have an <code>isActive</code> value matching one of the values in the array (OR, not AND).</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:asset</code> ,<code>read:component</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["component","assetList"],"host":["{{apiUrl}}"],"query":[{"key":"organizationComponentId","value":""},{"key":"assetComponentId","value":""},{"disabled":true,"description":{"content":"<p>Optional. Filter results based on one or more (applied additively) preset filters. This should be an array of objects with keys <code>field</code> and <code>value</code>.</p>\n","type":"text/plain"},"key":"filters","value":"[{'field':'assetActive','value':[true]}]"}],"variable":[]}},"response":[],"_postman_id":"7db45e1b-220e-4520-a375-3d05c470aa21"}],"id":"77c7530f-6f79-4624-a7f0-af596eb2d6ef","_postman_id":"77c7530f-6f79-4624-a7f0-af596eb2d6ef","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Components","item":[{"name":"Fetch Multiple Components","id":"87bb5a5e-5196-4f87-91e6-c01fe40953f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/components?page=2&limit=1000","description":"<p>Fetch an organization's components. This route provides a variety of query parameters and is intended to be used when fetching data for 1 or more components.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:component</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["components"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Confine results to a specific Asset ID.</p>\n","type":"text/plain"},"key":"assetId","value":"assetId"},{"disabled":true,"description":{"content":"<p>Optional. Confine results to 1 or more component ID's (comma-separated).</p>\n","type":"text/plain"},"key":"componentIds","value":"componentId1, componentId2"},{"disabled":true,"description":{"content":"<p>Optional. Confine results to 1 or more packageUrls (comma-separated)</p>\n","type":"text/plain"},"key":"packageUrls","value":"pkg:npm/@cyclonedx/cyclonedx-npm@1.0.0-beta.8"},{"disabled":true,"description":{"content":"<p>Optional. Confine results to those including this minor version (semver).</p>\n","type":"text/plain"},"key":"versionMinor","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. Confine results to those including this patch version (semver).</p>\n","type":"text/plain"},"key":"versionPatch","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. Confine results to those including these coordinates (Package URL format)</p>\n","type":"text/plain"},"key":"coordinates","value":"pkg:npm/@cyclonedx/cyclonedx-npm@1.0.0-beta.8"},{"disabled":true,"key":"filters","value":""},{"disabled":true,"key":"assetId","value":"68364987eb3b2cca23e881f5"},{"disabled":true,"key":"sort","value":"%7B%22version%22%3A-1%2C%22_id%22%3A-1%7D"},{"disabled":true,"key":"filters","value":"%5B%5D"},{"key":"page","value":"2"},{"key":"limit","value":"1000"}],"variable":[]}},"response":[{"id":"156fedd8-ad40-408e-9b56-936558f2ff05","name":"Fetch Components","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/components?page=2&limit=1000","host":["{{apiUrl}}"],"path":["components"],"query":[{"key":"componentIds","value":"63600f3b96a80e99c3906fe6,63600f3b96a80e99c3906fe7","type":"text","disabled":true},{"key":"packageUrls","value":"pkg:npm/%40cyclonedx/cyclonedx-npm@1.0.0-beta.8","disabled":true},{"key":"packageUrlNoVersion","value":"pkg:npm/%40cyclonedx/cyclonedx-npm","disabled":true},{"key":"version","value":"1.0.0-beta.8","disabled":true},{"key":"versionMajor","value":"1","disabled":true},{"key":"versionMinor","value":"0","disabled":true},{"key":"versionPatch","value":"0","disabled":true},{"key":"coordinates","value":"pkg:npm/%40cyclonedx/cyclonedx-npm@1.0.0-beta.8","disabled":true},{"key":"assetId","value":"636049ff96a80e99c396209d","type":"text","disabled":true},{"key":"page","value":"2"},{"key":"limit","value":"1000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://http://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"686621"},{"key":"ETag","value":"W/\"a7a1d-JLvgZWWEXdP1BPgN3Fnnj+AbY6Y\""},{"key":"Date","value":"Sun, 06 Nov 2022 21:39:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"queryInfo\": {\n        \"page\": 2,\n        \"limit\": 1000,\n        \"totalReturn\": 1000,\n        \"totalCount\": 5570\n    },\n    \"data\": [\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9da2\",\n            \"packageUrlNoVersion\": \"pkg:npm/trim-newlines\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/trim-newlines@3.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"trim-newlines\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"trim-newlines\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/trim-newlines@3.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.1\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9d0f\",\n            \"packageUrlNoVersion\": \"pkg:npm/the-generator\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/the-generator@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"the-generator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"the-generator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/the-generator@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9cfc\",\n            \"packageUrlNoVersion\": \"pkg:npm/terser-webpack-plugin\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/terser-webpack-plugin@2.3.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"terser-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"terser-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/terser-webpack-plugin@2.3.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.8\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9ce0\",\n            \"packageUrlNoVersion\": \"pkg:npm/tar\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/tar@6.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tar\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tar\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/tar@6.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.1.0\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9cc4\",\n            \"packageUrlNoVersion\": \"pkg:npm/table\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/table@6.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"table\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"table\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/table@6.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.1.0\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9c14\",\n            \"packageUrlNoVersion\": \"pkg:npm/string-width\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/string-width@4.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"string-width\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"string-width\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/string-width@4.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.2\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9ba4\",\n            \"packageUrlNoVersion\": \"pkg:npm/ssri\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ssri@7.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ssri\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ssri\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ssri@7.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.1.0\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9b7f\",\n            \"packageUrlNoVersion\": \"pkg:npm/spdx-license-ids\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/spdx-license-ids@3.0.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"spdx-license-ids\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"spdx-license-ids\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/spdx-license-ids@3.0.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.7\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9b53\",\n            \"packageUrlNoVersion\": \"pkg:npm/source-map-support\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"19\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/source-map-support@0.5.19\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"source-map-support\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"source-map-support\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/source-map-support@0.5.19\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.19\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9b14\",\n            \"packageUrlNoVersion\": \"pkg:npm/sockjs-client\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sockjs-client@1.5.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sockjs-client\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sockjs-client\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sockjs-client@1.5.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.5.1\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9b0a\",\n            \"packageUrlNoVersion\": \"pkg:npm/sockjs\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"21\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sockjs@0.3.21\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sockjs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sockjs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sockjs@0.3.21\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.21\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9a76\",\n            \"packageUrlNoVersion\": \"pkg:npm/semver\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/semver@7.3.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"semver\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"semver\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/semver@7.3.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.3.5\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9a43\",\n            \"packageUrlNoVersion\": \"pkg:npm/selfsigned\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/selfsigned@1.10.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"selfsigned\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"selfsigned\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/selfsigned@1.10.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.10.8\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef99e9\",\n            \"packageUrlNoVersion\": \"pkg:npm/sass-loader\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sass-loader@7.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sass-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sass-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sass-loader@7.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.3.1\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef999c\",\n            \"packageUrlNoVersion\": \"pkg:gem/rubyzip\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rubyzip@2.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rubyzip\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rubyzip\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rubyzip@2.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.0\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9989\",\n            \"packageUrlNoVersion\": \"pkg:gem/ruby2_keywords\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/ruby2_keywords@0.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ruby2_keywords\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ruby2_keywords\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/ruby2_keywords@0.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.0.4\"\n        },\n        {\n            \"_id\": \"63627fd48dbe1c01b9ef9954\",\n            \"packageUrlNoVersion\": \"pkg:npm/retry\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/retry@0.12.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"retry\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"retry\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/retry@0.12.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.12.0\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef98bc\",\n            \"packageUrlNoVersion\": \"pkg:npm/regjsparser\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regjsparser@0.6.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regjsparser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regjsparser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regjsparser@0.6.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.6.9\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef9897\",\n            \"packageUrlNoVersion\": \"pkg:npm/regexpu-core\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regexpu-core@4.7.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regexpu-core\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regexpu-core\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regexpu-core@4.7.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.7.1\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef9884\",\n            \"packageUrlNoVersion\": \"pkg:npm/regexpp\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regexpp@3.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regexpp\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regexpp\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regexpp@3.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.0\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef984e\",\n            \"packageUrlNoVersion\": \"pkg:npm/regenerator-runtime\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regenerator-runtime@0.13.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regenerator-runtime\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regenerator-runtime\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regenerator-runtime@0.13.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.13.7\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef983b\",\n            \"packageUrlNoVersion\": \"pkg:npm/regenerate-unicode-properties\",\n            \"versionMajor\": \"8\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regenerate-unicode-properties@8.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regenerate-unicode-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regenerate-unicode-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regenerate-unicode-properties@8.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"8.2.0\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef981d\",\n            \"packageUrlNoVersion\": \"pkg:npm/readdirp\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/readdirp@3.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"readdirp\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"readdirp\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/readdirp@3.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.5.0\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef97f9\",\n            \"packageUrlNoVersion\": \"pkg:npm/read-pkg-up\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/read-pkg-up@7.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"read-pkg-up\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"read-pkg-up\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/read-pkg-up@7.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.0.1\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef97de\",\n            \"packageUrlNoVersion\": \"pkg:npm/read-pkg\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/read-pkg@5.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"read-pkg\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"read-pkg\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/read-pkg@5.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.0\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef97b8\",\n            \"packageUrlNoVersion\": \"pkg:gem/rb-readline\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rb-readline@0.5.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rb-readline\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rb-readline\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rb-readline@0.5.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.5\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef97a5\",\n            \"packageUrlNoVersion\": \"pkg:gem/rb-fsevent\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rb-fsevent@0.10.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rb-fsevent\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rb-fsevent\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rb-fsevent@0.10.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.10.4\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef9777\",\n            \"packageUrlNoVersion\": \"pkg:gem/rake\",\n            \"versionMajor\": \"13\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rake@13.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rake\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rake\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rake@13.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"13.0.3\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef976d\",\n            \"packageUrlNoVersion\": \"pkg:gem/railties\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/railties@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"railties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"railties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/railties@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef9751\",\n            \"packageUrlNoVersion\": \"pkg:gem/rails\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rails@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rails\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rails\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rails@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef95ef\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-selector-parser\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-selector-parser@6.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-selector-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-selector-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-selector-parser@6.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.0.4\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef93b1\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"35\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss@7.0.35\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss@7.0.35\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.0.35\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef9395\",\n            \"packageUrlNoVersion\": \"pkg:npm/pnp-webpack-plugin\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/pnp-webpack-plugin@1.6.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"pnp-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"pnp-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/pnp-webpack-plugin@1.6.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.6.4\"\n        },\n        {\n            \"_id\": \"63627fd38dbe1c01b9ef934d\",\n            \"packageUrlNoVersion\": \"pkg:npm/picomatch\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/picomatch@2.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"picomatch\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"picomatch\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/picomatch@2.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.3\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef9248\",\n            \"packageUrlNoVersion\": \"pkg:npm/p-retry\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/p-retry@3.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"p-retry\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"p-retry\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/p-retry@3.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.1\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef9235\",\n            \"packageUrlNoVersion\": \"pkg:npm/p-map\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/p-map@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"p-map\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"p-map\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/p-map@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef922b\",\n            \"packageUrlNoVersion\": \"pkg:npm/p-map\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/p-map@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"p-map\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"p-map\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/p-map@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef91b6\",\n            \"packageUrlNoVersion\": \"pkg:npm/optimize-css-assets-webpack-plugin\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/optimize-css-assets-webpack-plugin@5.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"optimize-css-assets-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"optimize-css-assets-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/optimize-css-assets-webpack-plugin@5.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.0.4\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef9184\",\n            \"packageUrlNoVersion\": \"pkg:npm/object.values\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/object.values@1.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"object.values\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"object.values\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/object.values@1.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.3\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef9168\",\n            \"packageUrlNoVersion\": \"pkg:npm/object.entries\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/object.entries@1.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"object.entries\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"object.entries\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/object.entries@1.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.3\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef913e\",\n            \"packageUrlNoVersion\": \"pkg:npm/object-inspect\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"9\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/object-inspect@1.9.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"object-inspect\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"object-inspect\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/object-inspect@1.9.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.9.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef911e\",\n            \"packageUrlNoVersion\": \"pkg:npm/npmlog\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/npmlog@5.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"npmlog\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"npmlog\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/npmlog@5.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.0.1\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef9111\",\n            \"packageUrlNoVersion\": \"pkg:npm/normalize-package-data\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/normalize-package-data@3.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"normalize-package-data\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"normalize-package-data\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/normalize-package-data@3.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.3\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef9106\",\n            \"packageUrlNoVersion\": \"pkg:npm/nopt\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/nopt@5.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"nopt\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"nopt\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/nopt@5.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.0.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef9101\",\n            \"packageUrlNoVersion\": \"pkg:gem/nokogiri\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/nokogiri@1.11.3-x86_64-darwin\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"nokogiri\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"nokogiri\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/nokogiri@1.11.3-x86_64-darwin\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.11.3-x86_64-darwin\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef9100\",\n            \"packageUrlNoVersion\": \"pkg:npm/node-sass\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/node-sass@7.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"node-sass\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"node-sass\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/node-sass@7.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.0.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef90fa\",\n            \"packageUrlNoVersion\": \"pkg:npm/node-releases\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"71\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/node-releases@1.1.71\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"node-releases\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"node-releases\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/node-releases@1.1.71\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.71\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef90e8\",\n            \"packageUrlNoVersion\": \"pkg:npm/node-gyp\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/node-gyp@7.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"node-gyp\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"node-gyp\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/node-gyp@7.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.1.2\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef90ba\",\n            \"packageUrlNoVersion\": \"pkg:gem/net-http-persistent\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/net-http-persistent@4.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"net-http-persistent\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"net-http-persistent\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/net-http-persistent@4.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.1\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef9097\",\n            \"packageUrlNoVersion\": \"pkg:npm/ncp\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ncp@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ncp\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ncp\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ncp@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef9074\",\n            \"packageUrlNoVersion\": \"pkg:gem/multipart-post\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/multipart-post@2.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.418Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"multipart-post\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"multipart-post\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/multipart-post@2.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.1\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8fcd\",\n            \"packageUrlNoVersion\": \"pkg:npm/minipass\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/minipass@3.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"minipass\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"minipass\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/minipass@3.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.3\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8fc3\",\n            \"packageUrlNoVersion\": \"pkg:npm/minimist-options\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/minimist-options@4.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"minimist-options\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"minimist-options\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/minimist-options@4.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8f95\",\n            \"packageUrlNoVersion\": \"pkg:gem/mini_portile2\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/mini_portile2@2.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mini_portile2\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mini_portile2\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/mini_portile2@2.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.5.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8f82\",\n            \"packageUrlNoVersion\": \"pkg:npm/mini-css-extract-plugin\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mini-css-extract-plugin@0.8.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mini-css-extract-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mini-css-extract-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mini-css-extract-plugin@0.8.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.8.2\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8f70\",\n            \"packageUrlNoVersion\": \"pkg:npm/mime-types\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"30\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mime-types@2.1.30\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mime-types\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mime-types\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mime-types@2.1.30\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.30\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8f66\",\n            \"packageUrlNoVersion\": \"pkg:npm/mime-db\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"47\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mime-db@1.47.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mime-db\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mime-db\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mime-db@1.47.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.47.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8f5c\",\n            \"packageUrlNoVersion\": \"pkg:npm/mime\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mime@2.5.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mime\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mime\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mime@2.5.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.5.2\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8f0a\",\n            \"packageUrlNoVersion\": \"pkg:npm/meow\",\n            \"versionMajor\": \"9\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/meow@9.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"meow\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"meow\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/meow@9.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"9.0.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8e4a\",\n            \"packageUrlNoVersion\": \"pkg:gem/loofah\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"9\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/loofah@2.9.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"loofah\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"loofah\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/loofah@2.9.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.9.1\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8e0c\",\n            \"packageUrlNoVersion\": \"pkg:npm/lodash.flatten\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lodash.flatten@4.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lodash.flatten\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lodash.flatten\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lodash.flatten@4.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.4.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8df9\",\n            \"packageUrlNoVersion\": \"pkg:npm/lodash.clonedeep\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lodash.clonedeep@4.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lodash.clonedeep\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lodash.clonedeep\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lodash.clonedeep@4.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.5.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8dd0\",\n            \"packageUrlNoVersion\": \"pkg:npm/loader-utils\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/loader-utils@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"loader-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"loader-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/loader-utils@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8d80\",\n            \"packageUrlNoVersion\": \"pkg:npm/lines-and-columns\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lines-and-columns@1.1.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lines-and-columns\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lines-and-columns\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lines-and-columns@1.1.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.6\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8d05\",\n            \"packageUrlNoVersion\": \"pkg:npm/json5\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/json5@2.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.362Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"json5\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"json5\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/json5@2.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8c2d\",\n            \"packageUrlNoVersion\": \"pkg:npm/jest-worker\",\n            \"versionMajor\": \"25\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/jest-worker@25.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"jest-worker\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"jest-worker\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/jest-worker@25.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"25.5.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8bc2\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-string\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-string@1.0.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-string\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-string\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-string@1.0.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.5\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8ba6\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-regex\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-regex@1.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-regex@1.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.2\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8b8a\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-path-inside\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-path-inside@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-path-inside\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-path-inside\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-path-inside@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8b80\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-path-in-cwd\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-path-in-cwd@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-path-in-cwd\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-path-in-cwd\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-path-in-cwd@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8b64\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-number-object\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-number-object@1.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-number-object\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-number-object\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-number-object@1.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.4\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8ac4\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-core-module\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-core-module@2.8.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-core-module\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-core-module\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-core-module@2.8.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.8.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8aba\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-core-module\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-core-module@2.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-core-module\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-core-module\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-core-module@2.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8a95\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-boolean-object\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-boolean-object@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-boolean-object\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-boolean-object\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-boolean-object@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8a79\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-bigint\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-bigint@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-bigint\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-bigint\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-bigint@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8a44\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-absolute-url\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-absolute-url@3.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-absolute-url\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-absolute-url\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-absolute-url@3.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.3\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8a28\",\n            \"packageUrlNoVersion\": \"pkg:npm/ip-regex\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ip-regex@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ip-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ip-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ip-regex@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef89fa\",\n            \"packageUrlNoVersion\": \"pkg:npm/internal-ip\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/internal-ip@4.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"internal-ip\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"internal-ip\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/internal-ip@4.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.3.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8935\",\n            \"packageUrlNoVersion\": \"pkg:gem/http_parser.rb\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/http_parser.rb@0.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"http_parser.rb\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"http_parser.rb\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/http_parser.rb@0.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.6.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8925\",\n            \"packageUrlNoVersion\": \"pkg:npm/http-proxy-middleware\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"19\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/http-proxy-middleware@0.19.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"http-proxy-middleware\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"http-proxy-middleware\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/http-proxy-middleware@0.19.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.19.1\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef88c4\",\n            \"packageUrlNoVersion\": \"pkg:npm/hosted-git-info\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/hosted-git-info@4.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"hosted-git-info\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"hosted-git-info\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/hosted-git-info@4.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.2\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef88b1\",\n            \"packageUrlNoVersion\": \"pkg:gem/honeybadger\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/honeybadger@4.8.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"honeybadger\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"honeybadger\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/honeybadger@4.8.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.8.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef880d\",\n            \"packageUrlNoVersion\": \"pkg:npm/hard-rejection\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/hard-rejection@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"hard-rejection\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"hard-rejection\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/hard-rejection@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef87d8\",\n            \"packageUrlNoVersion\": \"pkg:gem/guard\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"16\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/guard@2.16.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"guard\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"guard\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/guard@2.16.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.16.2\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef87ce\",\n            \"packageUrlNoVersion\": \"pkg:npm/graceful-fs\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/graceful-fs@4.2.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"graceful-fs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"graceful-fs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/graceful-fs@4.2.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.8\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef8797\",\n            \"packageUrlNoVersion\": \"pkg:npm/globals\",\n            \"versionMajor\": \"13\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/globals@13.8.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"globals\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"globals\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/globals@13.8.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"13.8.0\"\n        },\n        {\n            \"_id\": \"63627fd28dbe1c01b9ef878d\",\n            \"packageUrlNoVersion\": \"pkg:npm/globals\",\n            \"versionMajor\": \"12\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/globals@12.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"globals\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"globals\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/globals@12.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"12.4.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8732\",\n            \"packageUrlNoVersion\": \"pkg:npm/get-stream\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/get-stream@4.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"get-stream\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"get-stream\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/get-stream@4.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef86fd\",\n            \"packageUrlNoVersion\": \"pkg:npm/gauge\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/gauge@3.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"gauge\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"gauge\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/gauge@3.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.2\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8682\",\n            \"packageUrlNoVersion\": \"pkg:gem/formatador\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/formatador@0.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"formatador\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"formatador\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/formatador@0.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.5\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8661\",\n            \"packageUrlNoVersion\": \"pkg:npm/follow-redirects\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/follow-redirects@1.13.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"follow-redirects\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"follow-redirects\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/follow-redirects@1.13.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.13.3\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8647\",\n            \"packageUrlNoVersion\": \"pkg:npm/flatted\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/flatted@3.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"flatted\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"flatted\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/flatted@3.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef863d\",\n            \"packageUrlNoVersion\": \"pkg:npm/flatted\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/flatted@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"flatted\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"flatted\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/flatted@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8600\",\n            \"packageUrlNoVersion\": \"pkg:npm/find-cache-dir\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/find-cache-dir@3.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"find-cache-dir\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"find-cache-dir\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/find-cache-dir@3.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.3.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef85ca\",\n            \"packageUrlNoVersion\": \"pkg:npm/file-loader\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/file-loader@4.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"file-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"file-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/file-loader@4.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.3.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef85ae\",\n            \"packageUrlNoVersion\": \"pkg:gem/ffi\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"15\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/ffi@1.15.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ffi\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ffi\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/ffi@1.15.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.15.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef85a4\",\n            \"packageUrlNoVersion\": \"pkg:npm/faye-websocket\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/faye-websocket@0.11.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"faye-websocket\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"faye-websocket\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/faye-websocket@0.11.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.11.3\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8586\",\n            \"packageUrlNoVersion\": \"pkg:gem/faraday-net_http_persistent\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/faraday-net_http_persistent@1.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"faraday-net_http_persistent\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"faraday-net_http_persistent\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/faraday-net_http_persistent@1.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.3\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef857c\",\n            \"packageUrlNoVersion\": \"pkg:gem/faraday-net_http\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/faraday-net_http@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"faraday-net_http\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"faraday-net_http\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/faraday-net_http@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef856f\",\n            \"packageUrlNoVersion\": \"pkg:gem/faraday-excon\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/faraday-excon@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"faraday-excon\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"faraday-excon\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/faraday-excon@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8568\",\n            \"packageUrlNoVersion\": \"pkg:gem/faraday\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/faraday@1.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"faraday\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"faraday\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/faraday@1.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef851a\",\n            \"packageUrlNoVersion\": \"pkg:gem/execjs\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/execjs@2.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"execjs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"execjs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/execjs@2.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.7.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8510\",\n            \"packageUrlNoVersion\": \"pkg:npm/execa\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/execa@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"execa\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"execa\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/execa@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8506\",\n            \"packageUrlNoVersion\": \"pkg:gem/excon\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"80\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/excon@0.80.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"excon\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"excon\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/excon@0.80.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.80.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef84f3\",\n            \"packageUrlNoVersion\": \"pkg:npm/eventsource\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/eventsource@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"eventsource\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"eventsource\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/eventsource@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8493\",\n            \"packageUrlNoVersion\": \"pkg:npm/esm\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"25\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/esm@3.2.25\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"esm\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"esm\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/esm@3.2.25\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.25\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8489\",\n            \"packageUrlNoVersion\": \"pkg:npm/eslint-visitor-keys\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/eslint-visitor-keys@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"eslint-visitor-keys\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"eslint-visitor-keys\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/eslint-visitor-keys@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef845b\",\n            \"packageUrlNoVersion\": \"pkg:npm/eslint-plugin-vue\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/eslint-plugin-vue@6.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"eslint-plugin-vue\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"eslint-plugin-vue\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/eslint-plugin-vue@6.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.2.2\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8451\",\n            \"packageUrlNoVersion\": \"pkg:npm/eslint-plugin-import\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"22\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/eslint-plugin-import@2.22.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"eslint-plugin-import\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"eslint-plugin-import\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/eslint-plugin-import@2.22.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.22.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8440\",\n            \"packageUrlNoVersion\": \"pkg:npm/eslint-module-utils\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/eslint-module-utils@2.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"eslint-module-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"eslint-module-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/eslint-module-utils@2.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef843d\",\n            \"packageUrlNoVersion\": \"pkg:npm/eslint-import-resolver-node\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/eslint-import-resolver-node@0.3.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"eslint-import-resolver-node\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"eslint-import-resolver-node\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/eslint-import-resolver-node@0.3.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.4\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef842a\",\n            \"packageUrlNoVersion\": \"pkg:npm/eslint\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/eslint@7.24.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"eslint\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"eslint\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/eslint@7.24.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.24.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef840b\",\n            \"packageUrlNoVersion\": \"pkg:npm/es-abstract\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"18\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/es-abstract@1.18.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"es-abstract\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"es-abstract\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/es-abstract@1.18.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.18.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef83e6\",\n            \"packageUrlNoVersion\": \"pkg:npm/env-paths\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/env-paths@2.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"env-paths\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"env-paths\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/env-paths@2.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8397\",\n            \"packageUrlNoVersion\": \"pkg:gem/em-websocket\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/em-websocket@0.5.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"em-websocket\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"em-websocket\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/em-websocket@0.5.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.2\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8383\",\n            \"packageUrlNoVersion\": \"pkg:npm/electron-to-chromium\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"717\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/electron-to-chromium@1.3.717\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"electron-to-chromium\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"electron-to-chromium\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/electron-to-chromium@1.3.717\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.717\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef830d\",\n            \"packageUrlNoVersion\": \"pkg:npm/doctrine\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/doctrine@1.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"doctrine\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"doctrine\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/doctrine@1.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.5.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef82cd\",\n            \"packageUrlNoVersion\": \"pkg:npm/detect-node\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/detect-node@2.0.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"detect-node\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"detect-node\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/detect-node@2.0.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.5\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8290\",\n            \"packageUrlNoVersion\": \"pkg:npm/del\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/del@4.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"del\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"del\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/del@4.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8275\",\n            \"packageUrlNoVersion\": \"pkg:npm/default-gateway\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/default-gateway@4.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"default-gateway\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"default-gateway\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/default-gateway@4.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef825a\",\n            \"packageUrlNoVersion\": \"pkg:npm/decamelize-keys\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/decamelize-keys@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"decamelize-keys\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"decamelize-keys\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/decamelize-keys@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8242\",\n            \"packageUrlNoVersion\": \"pkg:npm/debug\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/debug@4.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"debug\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"debug\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/debug@4.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.3.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef808b\",\n            \"packageUrlNoVersion\": \"pkg:npm/core-js-compat\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/core-js-compat@3.10.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"core-js-compat\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"core-js-compat\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/core-js-compat@3.10.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.10.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef8075\",\n            \"packageUrlNoVersion\": \"pkg:npm/core-js\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/core-js@3.10.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"core-js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"core-js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/core-js@3.10.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.10.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7ff8\",\n            \"packageUrlNoVersion\": \"pkg:npm/contains-path\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/contains-path@0.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"contains-path\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"contains-path\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/contains-path@0.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7f9a\",\n            \"packageUrlNoVersion\": \"pkg:gem/connection_pool\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/connection_pool@2.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"connection_pool\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"connection_pool\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/connection_pool@2.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.5\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7f6a\",\n            \"packageUrlNoVersion\": \"pkg:npm/confusing-browser-globals\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"10\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/confusing-browser-globals@1.0.10\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"confusing-browser-globals\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"confusing-browser-globals\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/confusing-browser-globals@1.0.10\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.10\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7f54\",\n            \"packageUrlNoVersion\": \"pkg:gem/concurrent-ruby\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/concurrent-ruby@1.1.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"concurrent-ruby\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"concurrent-ruby\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/concurrent-ruby@1.1.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.8\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7ec3\",\n            \"packageUrlNoVersion\": \"pkg:npm/color-support\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/color-support@1.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"color-support\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"color-support\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/color-support@1.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.3\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7ea7\",\n            \"packageUrlNoVersion\": \"pkg:npm/color-string\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/color-string@1.5.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"color-string\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"color-string\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/color-string@1.5.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.5.5\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7e6f\",\n            \"packageUrlNoVersion\": \"pkg:npm/color\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/color@3.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"color\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"color\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/color@3.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.3\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7d5d\",\n            \"packageUrlNoVersion\": \"pkg:npm/chokidar\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/chokidar@3.5.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"chokidar\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"chokidar\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/chokidar@3.5.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.5.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7d2c\",\n            \"packageUrlNoVersion\": \"pkg:npm/chalk\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/chalk@4.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"chalk\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"chalk\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/chalk@4.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7d1f\",\n            \"packageUrlNoVersion\": \"pkg:npm/chalk\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/chalk@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"chalk\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"chalk\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/chalk@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7cf0\",\n            \"packageUrlNoVersion\": \"pkg:npm/caniuse-lite\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"30001209\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/caniuse-lite@1.0.30001209\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"caniuse-lite\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"caniuse-lite\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/caniuse-lite@1.0.30001209\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.30001209\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7c9f\",\n            \"packageUrlNoVersion\": \"pkg:npm/cacache\",\n            \"versionMajor\": \"15\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/cacache@15.0.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"cacache\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"cacache\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/cacache@15.0.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"15.0.6\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7c93\",\n            \"packageUrlNoVersion\": \"pkg:npm/cacache\",\n            \"versionMajor\": \"13\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/cacache@13.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"cacache\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"cacache\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/cacache@13.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"13.0.1\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7c4f\",\n            \"packageUrlNoVersion\": \"pkg:npm/browserslist\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"16\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/browserslist@4.16.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"browserslist\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"browserslist\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/browserslist@4.16.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.16.4\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7c22\",\n            \"packageUrlNoVersion\": \"pkg:gem/braze_ruby\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/braze_ruby@0.4.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"braze_ruby\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"braze_ruby\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/braze_ruby@0.4.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.2\"\n        },\n        {\n            \"_id\": \"63627fd18dbe1c01b9ef7c01\",\n            \"packageUrlNoVersion\": \"pkg:gem/bootsnap\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/bootsnap@1.7.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"bootsnap\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"bootsnap\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/bootsnap@1.7.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.7.3\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7a46\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-polyfill-regenerator\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-polyfill-regenerator@0.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-polyfill-regenerator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-polyfill-regenerator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-polyfill-regenerator@0.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7a3c\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-polyfill-corejs3\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-polyfill-corejs3@0.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-polyfill-corejs3\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-polyfill-corejs3\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-polyfill-corejs3@0.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7a32\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-polyfill-corejs2\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-polyfill-corejs2@0.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-polyfill-corejs2\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-polyfill-corejs2\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-polyfill-corejs2@0.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7a0c\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-loader\",\n            \"versionMajor\": \"8\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-loader@8.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-loader@8.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"8.2.2\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef79a0\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-eslint\",\n            \"versionMajor\": \"10\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-eslint@10.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-eslint\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-eslint\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-eslint@10.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"10.1.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef797a\",\n            \"packageUrlNoVersion\": \"pkg:gem/autoprefixer-rails\",\n            \"versionMajor\": \"10\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/autoprefixer-rails@10.2.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"autoprefixer-rails\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"autoprefixer-rails\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/autoprefixer-rails@10.2.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"10.2.4.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef796e\",\n            \"packageUrlNoVersion\": \"pkg:npm/autoprefixer\",\n            \"versionMajor\": \"9\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/autoprefixer@9.8.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"autoprefixer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"autoprefixer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/autoprefixer@9.8.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"9.8.6\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef78ff\",\n            \"packageUrlNoVersion\": \"pkg:npm/arrify\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/arrify@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"arrify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"arrify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/arrify@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef78f5\",\n            \"packageUrlNoVersion\": \"pkg:npm/array.prototype.flat\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/array.prototype.flat@1.2.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"array.prototype.flat\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"array.prototype.flat\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/array.prototype.flat@1.2.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.4\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7883\",\n            \"packageUrlNoVersion\": \"pkg:npm/are-we-there-yet\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/are-we-there-yet@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"are-we-there-yet\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"are-we-there-yet\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/are-we-there-yet@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7867\",\n            \"packageUrlNoVersion\": \"pkg:npm/aproba\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/aproba@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"aproba\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"aproba\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/aproba@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef77fa\",\n            \"packageUrlNoVersion\": \"pkg:npm/ansi-colors\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ansi-colors@3.2.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ansi-colors\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ansi-colors\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ansi-colors@3.2.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.4\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef77ce\",\n            \"packageUrlNoVersion\": \"pkg:npm/ajv\",\n            \"versionMajor\": \"8\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ajv@8.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ajv\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ajv\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ajv@8.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"8.1.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef77b9\",\n            \"packageUrlNoVersion\": \"pkg:gem/addressable\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/addressable@2.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"addressable\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"addressable\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/addressable@2.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.7.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef77af\",\n            \"packageUrlNoVersion\": \"pkg:gem/activesupport\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/activesupport@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"activesupport\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"activesupport\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/activesupport@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef77a5\",\n            \"packageUrlNoVersion\": \"pkg:gem/activestorage\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/activestorage@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"activestorage\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"activestorage\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/activestorage@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef779b\",\n            \"packageUrlNoVersion\": \"pkg:gem/activerecord\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/activerecord@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"activerecord\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"activerecord\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/activerecord@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7791\",\n            \"packageUrlNoVersion\": \"pkg:gem/activemodel\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/activemodel@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"activemodel\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"activemodel\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/activemodel@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7787\",\n            \"packageUrlNoVersion\": \"pkg:gem/activejob\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/activejob@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"activejob\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"activejob\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/activejob@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef777d\",\n            \"packageUrlNoVersion\": \"pkg:gem/actionview\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/actionview@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"actionview\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"actionview\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/actionview@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7773\",\n            \"packageUrlNoVersion\": \"pkg:gem/actionpack\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/actionpack@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"actionpack\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"actionpack\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/actionpack@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7769\",\n            \"packageUrlNoVersion\": \"pkg:gem/actionmailer\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/actionmailer@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"actionmailer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"actionmailer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/actionmailer@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef775f\",\n            \"packageUrlNoVersion\": \"pkg:gem/actioncable\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/actioncable@5.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"actioncable\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"actioncable\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/actioncable@5.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.5\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7755\",\n            \"packageUrlNoVersion\": \"pkg:npm/acorn-jsx\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/acorn-jsx@5.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"acorn-jsx\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"acorn-jsx\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/acorn-jsx@5.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.3.1\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7699\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40vue/component-compiler-utils\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40vue/component-compiler-utils@3.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@vue/component-compiler-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@vue/component-compiler-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40vue/component-compiler-utils@3.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7689\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40types/q\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40types/q@1.5.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@types/q\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@types/q\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40types/q@1.5.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.5.4\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef767d\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40types/normalize-package-data\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40types/normalize-package-data@2.4.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@types/normalize-package-data\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@types/normalize-package-data\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40types/normalize-package-data@2.4.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.4.1\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7673\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40types/node\",\n            \"versionMajor\": \"14\",\n            \"versionMinor\": \"14\",\n            \"versionPatch\": \"41\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40types/node@14.14.41\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@types/node\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@types/node\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40types/node@14.14.41\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"14.14.41\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7669\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40types/minimist\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40types/minimist@1.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@types/minimist\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@types/minimist\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40types/minimist@1.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.2\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef765b\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40types/minimatch\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40types/minimatch@3.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@types/minimatch\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@types/minimatch\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40types/minimatch@3.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.4\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7650\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40types/json-schema\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40types/json-schema@7.0.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@types/json-schema\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@types/json-schema\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40types/json-schema@7.0.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.0.7\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7646\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40types/glob\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40types/glob@7.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@types/glob\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@types/glob\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40types/glob@7.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.1.3\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef763c\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40rails/webpacker\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40rails/webpacker@4.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@rails/webpacker\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@rails/webpacker\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40rails/webpacker@4.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.3.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7623\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40eslint/eslintrc\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40eslint/eslintrc@0.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@eslint/eslintrc\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@eslint/eslintrc\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40eslint/eslintrc@0.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7617\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/types\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"14\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/types@7.13.14\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/types\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/types\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/types@7.13.14\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.14\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7611\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/traverse\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"15\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/traverse@7.13.15\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/traverse\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/traverse\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/traverse@7.13.15\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.15\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7607\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/template\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/template@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/template\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/template\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/template@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef75fd\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/runtime\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"10\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/runtime@7.13.10\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/runtime\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/runtime\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/runtime@7.13.10\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.10\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef75f3\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/preset-modules\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/preset-modules@0.1.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/preset-modules\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/preset-modules\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/preset-modules@0.1.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.4\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef75e9\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/preset-env\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"15\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/preset-env@7.13.15\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/preset-env\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/preset-env\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/preset-env@7.13.15\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.15\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef75df\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-unicode-regex\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-unicode-regex@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-unicode-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-unicode-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-unicode-regex@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef75d5\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-unicode-escapes\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-unicode-escapes@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-unicode-escapes\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-unicode-escapes\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-unicode-escapes@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef75cb\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-typeof-symbol\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-typeof-symbol@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-typeof-symbol\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-typeof-symbol\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-typeof-symbol@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef75be\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-template-literals\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-template-literals@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-template-literals\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-template-literals\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-template-literals@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef75b7\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-sticky-regex\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-sticky-regex@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-sticky-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-sticky-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-sticky-regex@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef75ad\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-spread\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-spread@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-spread\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-spread\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-spread@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef75a3\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-shorthand-properties\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-shorthand-properties@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-shorthand-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-shorthand-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-shorthand-properties@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7599\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-runtime\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"15\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-runtime@7.13.15\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-runtime\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-runtime\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-runtime@7.13.15\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.15\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef758f\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-reserved-words\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-reserved-words@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-reserved-words\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-reserved-words\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-reserved-words@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7585\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-regenerator\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"15\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-regenerator@7.13.15\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-regenerator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-regenerator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-regenerator@7.13.15\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.15\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7578\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-property-literals\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-property-literals@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-property-literals\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-property-literals\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-property-literals@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7571\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-parameters\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-parameters@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-parameters\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-parameters\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-parameters@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7567\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-object-super\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-object-super@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-object-super\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-object-super\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-object-super@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef755d\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-new-target\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-new-target@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-new-target\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-new-target\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-new-target@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7551\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-named-capturing-groups-regex\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-named-capturing-groups-regex@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-named-capturing-groups-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-named-capturing-groups-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-named-capturing-groups-regex@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef754a\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-modules-umd\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-modules-umd@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-modules-umd\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-modules-umd\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-modules-umd@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7540\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-modules-systemjs\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-modules-systemjs@7.13.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-modules-systemjs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-modules-systemjs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-modules-systemjs@7.13.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.8\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7536\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-modules-commonjs\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-modules-commonjs@7.13.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-modules-commonjs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-modules-commonjs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-modules-commonjs@7.13.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.8\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef752c\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-modules-amd\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-modules-amd@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-modules-amd\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-modules-amd\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-modules-amd@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7522\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-member-expression-literals\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-member-expression-literals@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-member-expression-literals\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-member-expression-literals\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-member-expression-literals@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7518\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-literals\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-literals@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-literals\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-literals\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-literals@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef750e\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-function-name\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-function-name@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-function-name\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-function-name\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-function-name@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7500\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-for-of\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-for-of@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-for-of\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-for-of\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-for-of@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef74fa\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-exponentiation-operator\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-exponentiation-operator@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-exponentiation-operator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-exponentiation-operator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-exponentiation-operator@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef74f0\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-duplicate-keys\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-duplicate-keys@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-duplicate-keys\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-duplicate-keys\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-duplicate-keys@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef74e6\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-dotall-regex\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-dotall-regex@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-dotall-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-dotall-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-dotall-regex@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef74dc\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-destructuring\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-destructuring@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-destructuring\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-destructuring\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-destructuring@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef74cf\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-computed-properties\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-computed-properties@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-computed-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-computed-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-computed-properties@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef74c8\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-classes\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-classes@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-classes\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-classes\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-classes@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef74be\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-block-scoping\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-block-scoping@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-block-scoping\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-block-scoping\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-block-scoping@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef74b1\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-block-scoped-functions\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-block-scoped-functions@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-block-scoped-functions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-block-scoped-functions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-block-scoped-functions@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef74aa\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-async-to-generator\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-async-to-generator@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-async-to-generator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-async-to-generator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-async-to-generator@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef749a\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-transform-arrow-functions\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-transform-arrow-functions@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-transform-arrow-functions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-transform-arrow-functions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-transform-arrow-functions@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7491\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-syntax-top-level-await\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-syntax-top-level-await@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-syntax-top-level-await\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-syntax-top-level-await\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-syntax-top-level-await@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef746f\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-unicode-property-regex\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-unicode-property-regex@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-unicode-property-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-unicode-property-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-unicode-property-regex@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7463\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-private-methods\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-private-methods@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-private-methods\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-private-methods\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-private-methods@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef745b\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-optional-chaining\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"12\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-optional-chaining@7.13.12\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-optional-chaining\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-optional-chaining\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-optional-chaining@7.13.12\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.12\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7451\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-optional-catch-binding\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-optional-catch-binding@7.13.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-optional-catch-binding\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-optional-catch-binding\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-optional-catch-binding@7.13.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.8\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7447\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-object-rest-spread\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-object-rest-spread@7.13.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-object-rest-spread\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-object-rest-spread\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-object-rest-spread@7.13.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.8\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef743b\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-numeric-separator\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-numeric-separator@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-numeric-separator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-numeric-separator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-numeric-separator@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7431\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-nullish-coalescing-operator\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-nullish-coalescing-operator@7.13.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-nullish-coalescing-operator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-nullish-coalescing-operator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-nullish-coalescing-operator@7.13.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.8\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef742d\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-logical-assignment-operators\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-logical-assignment-operators@7.13.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-logical-assignment-operators\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-logical-assignment-operators\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-logical-assignment-operators@7.13.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.8\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7423\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-json-strings\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-json-strings@7.13.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-json-strings\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-json-strings\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-json-strings@7.13.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.8\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7419\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-export-namespace-from\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-export-namespace-from@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-export-namespace-from\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-export-namespace-from\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-export-namespace-from@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef740e\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-dynamic-import\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-dynamic-import@7.13.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-dynamic-import\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-dynamic-import\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-dynamic-import@7.13.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.8\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7403\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-class-properties\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-class-properties@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-class-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-class-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-class-properties@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef73fa\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-proposal-async-generator-functions\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"15\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-proposal-async-generator-functions@7.13.15\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-proposal-async-generator-functions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-proposal-async-generator-functions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-proposal-async-generator-functions@7.13.15\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.15\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef73f0\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"12\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.13.12\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.13.12\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.12\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef73e6\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/parser\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"15\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/parser@7.13.15\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/parser@7.13.15\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.15\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef73dc\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/highlight\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"10\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/highlight@7.13.10\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/highlight\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/highlight\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/highlight@7.13.10\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.10\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef73ce\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helpers\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"10\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helpers@7.13.10\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helpers\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helpers\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helpers@7.13.10\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.10\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef73c7\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-wrap-function\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-wrap-function@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-wrap-function\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-wrap-function\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-wrap-function@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef73bd\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-validator-option\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"17\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-validator-option@7.12.17\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-validator-option\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-validator-option\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-validator-option@7.12.17\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.17\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef73b3\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-validator-identifier\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"11\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-validator-identifier@7.12.11\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-validator-identifier\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-validator-identifier\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-validator-identifier@7.12.11\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.11\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef73a9\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-split-export-declaration\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-split-export-declaration@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-split-export-declaration\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-split-export-declaration\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-split-export-declaration@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef739f\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-skip-transparent-expression-wrappers\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-skip-transparent-expression-wrappers@7.12.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-skip-transparent-expression-wrappers\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-skip-transparent-expression-wrappers\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-skip-transparent-expression-wrappers@7.12.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.1\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7395\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-simple-access\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"12\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-simple-access@7.13.12\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-simple-access\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-simple-access\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-simple-access@7.13.12\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.12\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7388\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-replace-supers\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"12\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-replace-supers@7.13.12\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-replace-supers\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-replace-supers\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-replace-supers@7.13.12\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.12\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7381\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-remap-async-to-generator\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-remap-async-to-generator@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-remap-async-to-generator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-remap-async-to-generator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-remap-async-to-generator@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7377\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-plugin-utils\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-plugin-utils@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-plugin-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-plugin-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-plugin-utils@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef736a\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-optimise-call-expression\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-optimise-call-expression@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-optimise-call-expression\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-optimise-call-expression\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-optimise-call-expression@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7362\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-module-transforms\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"14\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-module-transforms@7.13.14\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-module-transforms\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-module-transforms\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-module-transforms@7.13.14\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.14\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef735b\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-module-imports\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"12\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-module-imports@7.13.12\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-module-imports\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-module-imports\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-module-imports@7.13.12\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.12\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7351\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-member-expression-to-functions\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"12\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-member-expression-to-functions@7.13.12\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-member-expression-to-functions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-member-expression-to-functions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-member-expression-to-functions@7.13.12\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.12\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7347\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-hoist-variables\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-hoist-variables@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-hoist-variables\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-hoist-variables\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-hoist-variables@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef733d\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-get-function-arity\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-get-function-arity@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-get-function-arity\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-get-function-arity\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-get-function-arity@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7333\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-function-name\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-function-name@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-function-name\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-function-name\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-function-name@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7329\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-explode-assignable-expression\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-explode-assignable-expression@7.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-explode-assignable-expression\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-explode-assignable-expression\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-explode-assignable-expression@7.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef731f\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-define-polyfill-provider\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-define-polyfill-provider@0.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-define-polyfill-provider\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-define-polyfill-provider\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-define-polyfill-provider@0.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.0\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7315\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-create-regexp-features-plugin\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"17\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-create-regexp-features-plugin@7.12.17\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-create-regexp-features-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-create-regexp-features-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-create-regexp-features-plugin@7.12.17\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.17\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef730b\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-create-class-features-plugin\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"11\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-create-class-features-plugin@7.13.11\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-create-class-features-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-create-class-features-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-create-class-features-plugin@7.13.11\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.11\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef7301\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-compilation-targets\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-compilation-targets@7.13.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-compilation-targets\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-compilation-targets\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-compilation-targets@7.13.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef72f7\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-builder-binary-assignment-operator-visitor\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-builder-binary-assignment-operator-visitor@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-builder-binary-assignment-operator-visitor\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-builder-binary-assignment-operator-visitor\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-builder-binary-assignment-operator-visitor@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef72ed\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/helper-annotate-as-pure\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/helper-annotate-as-pure@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/helper-annotate-as-pure\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/helper-annotate-as-pure\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/helper-annotate-as-pure@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef72e3\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/generator\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/generator@7.13.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/generator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/generator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/generator@7.13.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.9\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef72d9\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/core\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"15\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/core@7.13.15\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/core\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/core\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/core@7.13.15\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.15\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef72cf\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/compat-data\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"15\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/compat-data@7.13.15\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/compat-data\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/compat-data\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/compat-data@7.13.15\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.13.15\"\n        },\n        {\n            \"_id\": \"63627fd08dbe1c01b9ef72c5\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/code-frame\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"13\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/code-frame@7.12.13\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:37.361Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/code-frame\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/code-frame\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/code-frame@7.12.13\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.12.13\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef71f5\",\n            \"packageUrlNoVersion\": \"pkg:npm/yargs-parser\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/yargs-parser@7.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"yargs-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"yargs-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/yargs-parser@7.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.0.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef71eb\",\n            \"packageUrlNoVersion\": \"pkg:npm/yargs-parser\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/yargs-parser@4.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"yargs-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"yargs-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/yargs-parser@4.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.1\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef71d8\",\n            \"packageUrlNoVersion\": \"pkg:npm/yargs\",\n            \"versionMajor\": \"8\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/yargs@8.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"yargs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"yargs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/yargs@8.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"8.0.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef71ce\",\n            \"packageUrlNoVersion\": \"pkg:npm/yargs\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/yargs@6.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"yargs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"yargs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/yargs@6.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.6.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef71a1\",\n            \"packageUrlNoVersion\": \"pkg:npm/y18n\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/y18n@3.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"y18n\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"y18n\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/y18n@3.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef7196\",\n            \"packageUrlNoVersion\": \"pkg:npm/y18n\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/y18n@3.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"y18n\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"y18n\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/y18n@3.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.1\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef7183\",\n            \"packageUrlNoVersion\": \"pkg:npm/xtend\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/xtend@4.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"xtend\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"xtend\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/xtend@4.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.1\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef715e\",\n            \"packageUrlNoVersion\": \"pkg:npm/wrap-ansi\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/wrap-ansi@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"wrap-ansi\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"wrap-ansi\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/wrap-ansi@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef7129\",\n            \"packageUrlNoVersion\": \"pkg:npm/which-module\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/which-module@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"which-module\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"which-module\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/which-module@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef710f\",\n            \"packageUrlNoVersion\": \"pkg:npm/whet.extend\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"9\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/whet.extend@0.9.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"whet.extend\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"whet.extend\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/whet.extend@0.9.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.9.9\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef70f3\",\n            \"packageUrlNoVersion\": \"pkg:npm/websocket-extensions\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/websocket-extensions@0.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"websocket-extensions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"websocket-extensions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/websocket-extensions@0.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.3\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef70d7\",\n            \"packageUrlNoVersion\": \"pkg:npm/websocket-driver\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/websocket-driver@0.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"websocket-driver\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"websocket-driver\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/websocket-driver@0.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef70cd\",\n            \"packageUrlNoVersion\": \"pkg:gem/webpacker\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/webpacker@3.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpacker\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpacker\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/webpacker@3.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.6.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef70ba\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-sources\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-sources@1.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-sources\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-sources\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-sources@1.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef70b0\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-manifest-plugin\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-manifest-plugin@1.3.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-manifest-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-manifest-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-manifest-plugin@1.3.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef70a6\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-dev-server\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-dev-server@2.11.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-dev-server\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-dev-server\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-dev-server@2.11.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.11.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef709c\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-dev-middleware\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-dev-middleware@1.12.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-dev-middleware\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-dev-middleware\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-dev-middleware@1.12.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.12.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef7092\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack@3.12.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.283Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack@3.12.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.12.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef7064\",\n            \"packageUrlNoVersion\": \"pkg:npm/watchpack\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/watchpack@1.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"watchpack\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"watchpack\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/watchpack@1.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.6.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef703f\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-template-compiler\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"10\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-template-compiler@2.6.10\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-template-compiler\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-template-compiler\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-template-compiler@2.6.10\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.10\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef702c\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-style-loader\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-style-loader@4.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-style-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-style-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-style-loader@4.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef7022\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-scrollto\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"20\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-scrollto@2.20.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-scrollto\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-scrollto\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-scrollto@2.20.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.20.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef700f\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-loader\",\n            \"versionMajor\": \"14\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-loader@14.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-loader@14.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"14.2.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6ffc\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-hot-reload-api\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-hot-reload-api@2.3.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-hot-reload-api\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-hot-reload-api\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-hot-reload-api@2.3.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.3\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6fe9\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-carousel\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"18\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-carousel@0.18.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-carousel\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-carousel\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-carousel@0.18.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.18.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6fcd\",\n            \"packageUrlNoVersion\": \"pkg:npm/vm-browserify\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vm-browserify@0.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vm-browserify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vm-browserify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vm-browserify@0.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.0.4\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6fc3\",\n            \"packageUrlNoVersion\": \"pkg:npm/viewport-dimensions\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/viewport-dimensions@0.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"viewport-dimensions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"viewport-dimensions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/viewport-dimensions@0.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6fa7\",\n            \"packageUrlNoVersion\": \"pkg:npm/vendors\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vendors@1.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vendors\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vendors\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vendors@1.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.3\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6f84\",\n            \"packageUrlNoVersion\": \"pkg:npm/uuid\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/uuid@3.3.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"uuid\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"uuid\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/uuid@3.3.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.3.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6f46\",\n            \"packageUrlNoVersion\": \"pkg:npm/url-parse\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/url-parse@1.5.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"url-parse\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"url-parse\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/url-parse@1.5.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.5.3\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6f3c\",\n            \"packageUrlNoVersion\": \"pkg:npm/url-parse\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/url-parse@1.4.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"url-parse\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"url-parse\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/url-parse@1.4.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.7\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6f03\",\n            \"packageUrlNoVersion\": \"pkg:npm/upath\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/upath@1.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"upath\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"upath\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/upath@1.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6eea\",\n            \"packageUrlNoVersion\": \"pkg:npm/units-css\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/units-css@0.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"units-css\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"units-css\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/units-css@0.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6eda\",\n            \"packageUrlNoVersion\": \"pkg:npm/unique-slug\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/unique-slug@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"unique-slug\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"unique-slug\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/unique-slug@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6eac\",\n            \"packageUrlNoVersion\": \"pkg:npm/union-value\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/union-value@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"union-value\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"union-value\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/union-value@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6e99\",\n            \"packageUrlNoVersion\": \"pkg:npm/uglifyjs-webpack-plugin\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/uglifyjs-webpack-plugin@1.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"uglifyjs-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"uglifyjs-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/uglifyjs-webpack-plugin@1.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6e8f\",\n            \"packageUrlNoVersion\": \"pkg:npm/uglifyjs-webpack-plugin\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/uglifyjs-webpack-plugin@0.4.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"uglifyjs-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"uglifyjs-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/uglifyjs-webpack-plugin@0.4.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.6\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6e73\",\n            \"packageUrlNoVersion\": \"pkg:npm/uglify-es\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/uglify-es@3.3.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"uglify-es\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"uglify-es\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/uglify-es@3.3.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.3.9\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6e5c\",\n            \"packageUrlNoVersion\": \"pkg:gem/tzinfo-data\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2021\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/tzinfo-data@1.2021.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tzinfo-data\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tzinfo-data\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/tzinfo-data@1.2021.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2021.1\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6e3e\",\n            \"packageUrlNoVersion\": \"pkg:npm/type\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/type@2.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"type\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"type\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/type@2.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.5.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6e10\",\n            \"packageUrlNoVersion\": \"pkg:npm/true-case-path\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/true-case-path@1.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"true-case-path\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"true-case-path\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/true-case-path@1.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.3\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6e06\",\n            \"packageUrlNoVersion\": \"pkg:npm/trim-right\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/trim-right@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"trim-right\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"trim-right\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/trim-right@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6dfc\",\n            \"packageUrlNoVersion\": \"pkg:npm/trim-newlines\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/trim-newlines@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"trim-newlines\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"trim-newlines\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/trim-newlines@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6de9\",\n            \"packageUrlNoVersion\": \"pkg:npm/tough-cookie\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/tough-cookie@2.4.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tough-cookie\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tough-cookie\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/tough-cookie@2.4.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.4.3\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6d92\",\n            \"packageUrlNoVersion\": \"pkg:npm/timers-browserify\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"10\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/timers-browserify@2.0.10\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"timers-browserify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"timers-browserify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/timers-browserify@2.0.10\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.10\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6d88\",\n            \"packageUrlNoVersion\": \"pkg:npm/time-stamp\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/time-stamp@2.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"time-stamp\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"time-stamp\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/time-stamp@2.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6d6c\",\n            \"packageUrlNoVersion\": \"pkg:npm/thunky\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/thunky@1.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"thunky\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"thunky\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/thunky@1.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.3\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6d51\",\n            \"packageUrlNoVersion\": \"pkg:gem/thor\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/thor@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"thor\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"thor\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/thor@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6d47\",\n            \"packageUrlNoVersion\": \"pkg:npm/thesis-zero\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/thesis-zero@1.0.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"thesis-zero\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"thesis-zero\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/thesis-zero@1.0.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.7\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6d3d\",\n            \"packageUrlNoVersion\": \"pkg:npm/thesis-form\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/thesis-form@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"thesis-form\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"thesis-form\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/thesis-form@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6d33\",\n            \"packageUrlNoVersion\": \"pkg:npm/tar\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/tar@2.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tar\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tar\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/tar@2.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6d24\",\n            \"packageUrlNoVersion\": \"pkg:npm/tapable\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/tapable@0.2.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tapable\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tapable\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/tapable@0.2.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.9\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6d19\",\n            \"packageUrlNoVersion\": \"pkg:npm/svgo\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/svgo@0.7.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"svgo\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"svgo\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/svgo@0.7.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.2\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6d00\",\n            \"packageUrlNoVersion\": \"pkg:npm/supports-color\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/supports-color@4.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"supports-color\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"supports-color\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/supports-color@4.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.5.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6cf6\",\n            \"packageUrlNoVersion\": \"pkg:npm/supports-color\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/supports-color@3.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"supports-color\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"supports-color\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/supports-color@3.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.3\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6cda\",\n            \"packageUrlNoVersion\": \"pkg:npm/style-loader\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"23\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/style-loader@0.23.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"style-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"style-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/style-loader@0.23.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.23.1\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6cd0\",\n            \"packageUrlNoVersion\": \"pkg:npm/style-loader\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"21\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/style-loader@0.21.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"style-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"style-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/style-loader@0.21.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.21.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6cc6\",\n            \"packageUrlNoVersion\": \"pkg:npm/strip-indent\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/strip-indent@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"strip-indent\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"strip-indent\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/strip-indent@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6cb9\",\n            \"packageUrlNoVersion\": \"pkg:npm/strip-eof\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/strip-eof@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"strip-eof\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"strip-eof\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/strip-eof@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6ca9\",\n            \"packageUrlNoVersion\": \"pkg:npm/strip-bom\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/strip-bom@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"strip-bom\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"strip-bom\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/strip-bom@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6c2f\",\n            \"packageUrlNoVersion\": \"pkg:npm/stream-shift\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/stream-shift@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"stream-shift\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"stream-shift\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/stream-shift@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6c0a\",\n            \"packageUrlNoVersion\": \"pkg:npm/stdout-stream\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/stdout-stream@1.4.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"stdout-stream\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"stdout-stream\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/stdout-stream@1.4.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.1\"\n        },\n        {\n            \"_id\": \"63627fce8dbe1c01b9ef6bf1\",\n            \"packageUrlNoVersion\": \"pkg:npm/statuses\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/statuses@1.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"statuses\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"statuses\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/statuses@1.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6be6\",\n            \"packageUrlNoVersion\": \"pkg:gem/staccato\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/staccato@0.5.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"staccato\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"staccato\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/staccato@0.5.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.3\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6bd3\",\n            \"packageUrlNoVersion\": \"pkg:npm/ssri\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ssri@5.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ssri\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ssri\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ssri@5.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.3.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6bc1\",\n            \"packageUrlNoVersion\": \"pkg:gem/sprockets-rails\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/sprockets-rails@3.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sprockets-rails\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sprockets-rails\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/sprockets-rails@3.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.2\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6b98\",\n            \"packageUrlNoVersion\": \"pkg:npm/spdy-transport\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/spdy-transport@2.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"spdy-transport\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"spdy-transport\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/spdy-transport@2.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6b8e\",\n            \"packageUrlNoVersion\": \"pkg:npm/spdy\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/spdy@3.4.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"spdy\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"spdy\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/spdy@3.4.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.4.7\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6b84\",\n            \"packageUrlNoVersion\": \"pkg:npm/spdx-license-ids\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/spdx-license-ids@3.0.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"spdx-license-ids\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"spdx-license-ids\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/spdx-license-ids@3.0.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.9\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6b7a\",\n            \"packageUrlNoVersion\": \"pkg:npm/spdx-license-ids\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/spdx-license-ids@3.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"spdx-license-ids\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"spdx-license-ids\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/spdx-license-ids@3.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.4\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6b67\",\n            \"packageUrlNoVersion\": \"pkg:npm/spdx-expression-parse\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/spdx-expression-parse@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"spdx-expression-parse\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"spdx-expression-parse\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/spdx-expression-parse@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6b54\",\n            \"packageUrlNoVersion\": \"pkg:npm/spdx-exceptions\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/spdx-exceptions@2.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"spdx-exceptions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"spdx-exceptions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/spdx-exceptions@2.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6b41\",\n            \"packageUrlNoVersion\": \"pkg:npm/spdx-correct\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/spdx-correct@3.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"spdx-correct\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"spdx-correct\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/spdx-correct@3.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6b25\",\n            \"packageUrlNoVersion\": \"pkg:npm/source-map-support\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"18\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/source-map-support@0.4.18\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"source-map-support\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"source-map-support\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/source-map-support@0.4.18\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.18\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6b12\",\n            \"packageUrlNoVersion\": \"pkg:npm/source-map-resolve\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/source-map-resolve@0.5.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"source-map-resolve\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"source-map-resolve\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/source-map-resolve@0.5.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.2\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6af7\",\n            \"packageUrlNoVersion\": \"pkg:npm/source-map\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/source-map@0.4.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"source-map\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"source-map\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/source-map@0.4.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.4\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6add\",\n            \"packageUrlNoVersion\": \"pkg:npm/sockjs-client\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sockjs-client@1.1.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sockjs-client\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sockjs-client\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sockjs-client@1.1.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.4\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6ad3\",\n            \"packageUrlNoVersion\": \"pkg:npm/sockjs\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"19\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sockjs@0.3.19\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sockjs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sockjs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sockjs@0.3.19\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.19\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6ab0\",\n            \"packageUrlNoVersion\": \"pkg:npm/slash\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/slash@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"slash\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"slash\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/slash@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6a94\",\n            \"packageUrlNoVersion\": \"pkg:npm/signal-exit\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/signal-exit@3.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"signal-exit\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"signal-exit\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/signal-exit@3.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.2\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6a78\",\n            \"packageUrlNoVersion\": \"pkg:npm/shallow-clone\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/shallow-clone@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"shallow-clone\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"shallow-clone\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/shallow-clone@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6a42\",\n            \"packageUrlNoVersion\": \"pkg:npm/set-value\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/set-value@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"set-value\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"set-value\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/set-value@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6a27\",\n            \"packageUrlNoVersion\": \"pkg:npm/serve-static\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/serve-static@1.13.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"serve-static\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"serve-static\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/serve-static@1.13.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.13.2\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6a14\",\n            \"packageUrlNoVersion\": \"pkg:npm/serialize-javascript\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"9\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/serialize-javascript@1.9.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"serialize-javascript\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"serialize-javascript\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/serialize-javascript@1.9.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.9.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6a0a\",\n            \"packageUrlNoVersion\": \"pkg:npm/serialize-javascript\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/serialize-javascript@1.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"serialize-javascript\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"serialize-javascript\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/serialize-javascript@1.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.7.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef69f8\",\n            \"packageUrlNoVersion\": \"pkg:npm/send\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"16\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/send@0.16.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"send\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"send\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/send@0.16.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.16.2\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef69e7\",\n            \"packageUrlNoVersion\": \"pkg:npm/semver\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/semver@5.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"semver\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"semver\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/semver@5.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.7.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef69dd\",\n            \"packageUrlNoVersion\": \"pkg:npm/semver\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/semver@5.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"semver\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"semver\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/semver@5.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.3.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef69d3\",\n            \"packageUrlNoVersion\": \"pkg:npm/selfsigned\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/selfsigned@1.10.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"selfsigned\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"selfsigned\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/selfsigned@1.10.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.10.4\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef69c9\",\n            \"packageUrlNoVersion\": \"pkg:npm/selfsigned\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"11\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/selfsigned@1.10.11\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"selfsigned\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"selfsigned\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/selfsigned@1.10.11\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.10.11\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef69ad\",\n            \"packageUrlNoVersion\": \"pkg:npm/scss-tokenizer\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/scss-tokenizer@0.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"scss-tokenizer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"scss-tokenizer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/scss-tokenizer@0.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.3\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef699a\",\n            \"packageUrlNoVersion\": \"pkg:npm/schema-utils\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/schema-utils@0.4.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"schema-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"schema-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/schema-utils@0.4.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.7\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6990\",\n            \"packageUrlNoVersion\": \"pkg:npm/schema-utils\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/schema-utils@0.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"schema-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"schema-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/schema-utils@0.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef695c\",\n            \"packageUrlNoVersion\": \"pkg:npm/sass-loader\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sass-loader@6.0.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sass-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sass-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sass-loader@6.0.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.0.7\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6949\",\n            \"packageUrlNoVersion\": \"pkg:npm/sass-graph\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sass-graph@2.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sass-graph\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sass-graph\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sass-graph@2.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.5\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef693f\",\n            \"packageUrlNoVersion\": \"pkg:npm/sass-graph\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sass-graph@2.2.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sass-graph\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sass-graph\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sass-graph@2.2.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.4\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef68de\",\n            \"packageUrlNoVersion\": \"pkg:npm/rimraf\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/rimraf@2.6.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rimraf\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rimraf\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/rimraf@2.6.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.3\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef68b9\",\n            \"packageUrlNoVersion\": \"pkg:npm/rgb-hex\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/rgb-hex@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rgb-hex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rgb-hex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/rgb-hex@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef68af\",\n            \"packageUrlNoVersion\": \"pkg:npm/rgb\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/rgb@0.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rgb\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rgb\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/rgb@0.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6883\",\n            \"packageUrlNoVersion\": \"pkg:npm/resolve\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"20\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/resolve@1.20.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"resolve\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"resolve\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/resolve@1.20.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.20.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6879\",\n            \"packageUrlNoVersion\": \"pkg:npm/resolve\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/resolve@1.11.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"resolve\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"resolve\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/resolve@1.11.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.11.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef685e\",\n            \"packageUrlNoVersion\": \"pkg:npm/require-main-filename\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/require-main-filename@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"require-main-filename\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"require-main-filename\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/require-main-filename@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6859\",\n            \"packageUrlNoVersion\": \"pkg:npm/require-from-string\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/require-from-string@1.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"require-from-string\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"require-from-string\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/require-from-string@1.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef684a\",\n            \"packageUrlNoVersion\": \"pkg:gem/request_store\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/request_store@1.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"request_store\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"request_store\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/request_store@1.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.5.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6840\",\n            \"packageUrlNoVersion\": \"pkg:npm/request\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"88\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/request@2.88.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"request\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"request\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/request@2.88.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.88.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6836\",\n            \"packageUrlNoVersion\": \"pkg:npm/repeating\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/repeating@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"repeating\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"repeating\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/repeating@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef680b\",\n            \"packageUrlNoVersion\": \"pkg:npm/regjsparser\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regjsparser@0.1.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regjsparser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regjsparser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regjsparser@0.1.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.5\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6801\",\n            \"packageUrlNoVersion\": \"pkg:npm/regjsgen\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regjsgen@0.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regjsgen\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regjsgen\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regjsgen@0.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef67f7\",\n            \"packageUrlNoVersion\": \"pkg:npm/regexpu-core\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regexpu-core@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regexpu-core\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regexpu-core\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regexpu-core@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef67ed\",\n            \"packageUrlNoVersion\": \"pkg:gem/regexp_parser\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/regexp_parser@2.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regexp_parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regexp_parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/regexp_parser@2.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef67d7\",\n            \"packageUrlNoVersion\": \"pkg:npm/regex-cache\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regex-cache@0.4.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regex-cache\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regex-cache\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regex-cache@0.4.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.4\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef67ce\",\n            \"packageUrlNoVersion\": \"pkg:npm/regenerator-transform\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regenerator-transform@0.10.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regenerator-transform\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regenerator-transform\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regenerator-transform@0.10.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.10.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef67bd\",\n            \"packageUrlNoVersion\": \"pkg:npm/regenerator-runtime\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regenerator-runtime@0.12.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regenerator-runtime\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regenerator-runtime\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regenerator-runtime@0.12.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.12.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef67aa\",\n            \"packageUrlNoVersion\": \"pkg:npm/regenerator-runtime\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regenerator-runtime@0.10.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regenerator-runtime\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regenerator-runtime\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regenerator-runtime@0.10.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.10.5\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6797\",\n            \"packageUrlNoVersion\": \"pkg:npm/regenerate\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regenerate@1.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regenerate\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regenerate\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regenerate@1.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef678d\",\n            \"packageUrlNoVersion\": \"pkg:npm/reduce-function-call\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/reduce-function-call@1.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"reduce-function-call\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"reduce-function-call\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/reduce-function-call@1.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.3\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6783\",\n            \"packageUrlNoVersion\": \"pkg:npm/reduce-function-call\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/reduce-function-call@1.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"reduce-function-call\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"reduce-function-call\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/reduce-function-call@1.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.2\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6779\",\n            \"packageUrlNoVersion\": \"pkg:npm/reduce-css-calc\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/reduce-css-calc@2.1.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"reduce-css-calc\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"reduce-css-calc\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/reduce-css-calc@2.1.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.8\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef676f\",\n            \"packageUrlNoVersion\": \"pkg:npm/reduce-css-calc\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/reduce-css-calc@1.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"reduce-css-calc\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"reduce-css-calc\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/reduce-css-calc@1.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6765\",\n            \"packageUrlNoVersion\": \"pkg:npm/redent\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/redent@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"redent\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"redent\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/redent@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6749\",\n            \"packageUrlNoVersion\": \"pkg:npm/readable-stream\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/readable-stream@2.3.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"readable-stream\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"readable-stream\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/readable-stream@2.3.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.6\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef673f\",\n            \"packageUrlNoVersion\": \"pkg:npm/read-pkg-up\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/read-pkg-up@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"read-pkg-up\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"read-pkg-up\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/read-pkg-up@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6735\",\n            \"packageUrlNoVersion\": \"pkg:npm/read-pkg-up\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/read-pkg-up@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"read-pkg-up\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"read-pkg-up\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/read-pkg-up@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef672b\",\n            \"packageUrlNoVersion\": \"pkg:npm/read-pkg\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/read-pkg@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"read-pkg\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"read-pkg\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/read-pkg@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6721\",\n            \"packageUrlNoVersion\": \"pkg:npm/read-pkg\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/read-pkg@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"read-pkg\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"read-pkg\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/read-pkg@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef66ec\",\n            \"packageUrlNoVersion\": \"pkg:npm/raw-body\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/raw-body@2.3.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"raw-body\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"raw-body\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/raw-body@2.3.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.3\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef66a1\",\n            \"packageUrlNoVersion\": \"pkg:npm/randomatic\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/randomatic@3.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"randomatic\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"randomatic\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/randomatic@3.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef6651\",\n            \"packageUrlNoVersion\": \"pkg:gem/rails-html-sanitizer\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rails-html-sanitizer@1.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rails-html-sanitizer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rails-html-sanitizer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rails-html-sanitizer@1.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef5f3a\",\n            \"packageUrlNoVersion\": \"pkg:gem/rack-proxy\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rack-proxy@0.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rack-proxy\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rack-proxy\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rack-proxy@0.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.0\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef5f30\",\n            \"packageUrlNoVersion\": \"pkg:gem/rack-cors\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rack-cors@1.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rack-cors\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rack-cors\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rack-cors@1.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.1\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef5f1d\",\n            \"packageUrlNoVersion\": \"pkg:gem/racc\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/racc@1.5.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"racc\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"racc\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/racc@1.5.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.5.2\"\n        },\n        {\n            \"_id\": \"63627fcd8dbe1c01b9ef5f0a\",\n            \"packageUrlNoVersion\": \"pkg:npm/querystringify\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/querystringify@2.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"querystringify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"querystringify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/querystringify@2.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5ea3\",\n            \"packageUrlNoVersion\": \"pkg:gem/puma\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/puma@3.12.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"puma\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"puma\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/puma@3.12.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.12.6\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5e7e\",\n            \"packageUrlNoVersion\": \"pkg:npm/psl\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"32\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/psl@1.1.32\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"psl\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"psl\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/psl@1.1.32\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.32\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5e50\",\n            \"packageUrlNoVersion\": \"pkg:npm/proxy-addr\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/proxy-addr@2.0.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"proxy-addr\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"proxy-addr\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/proxy-addr@2.0.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.5\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5e34\",\n            \"packageUrlNoVersion\": \"pkg:npm/process-nextick-args\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/process-nextick-args@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"process-nextick-args\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"process-nextick-args\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/process-nextick-args@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5e21\",\n            \"packageUrlNoVersion\": \"pkg:npm/private\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/private@0.1.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"private\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"private\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/private@0.1.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.8\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5e16\",\n            \"packageUrlNoVersion\": \"pkg:npm/prettier\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"19\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/prettier@1.19.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"prettier\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"prettier\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/prettier@1.19.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.19.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5e0d\",\n            \"packageUrlNoVersion\": \"pkg:npm/prettier\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"17\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/prettier@1.17.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"prettier\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"prettier\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/prettier@1.17.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.17.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5e03\",\n            \"packageUrlNoVersion\": \"pkg:npm/preserve\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/preserve@0.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"preserve\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"preserve\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/preserve@0.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5df0\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-zindex\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-zindex@2.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-zindex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-zindex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-zindex@2.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5de6\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-values-parser\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-values-parser@1.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-values-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-values-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-values-parser@1.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.5.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5ddb\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-value-parser\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-value-parser@4.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-value-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-value-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-value-parser@4.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5dbf\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-unique-selectors\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-unique-selectors@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-unique-selectors\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-unique-selectors\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-unique-selectors@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5dae\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-svgo\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-svgo@2.1.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-svgo\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-svgo\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-svgo@2.1.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.6\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5da6\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-selector-parser\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-selector-parser@6.0.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-selector-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-selector-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-selector-parser@6.0.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.0.6\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d95\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-selector-parser\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-selector-parser@2.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-selector-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-selector-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-selector-parser@2.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.3\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d88\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-selector-not\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-selector-not@3.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-selector-not\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-selector-not\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-selector-not@3.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d81\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-selector-matches\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-selector-matches@3.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-selector-matches\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-selector-matches\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-selector-matches@3.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d77\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-replace-overflow-wrap\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-replace-overflow-wrap@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-replace-overflow-wrap\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-replace-overflow-wrap\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-replace-overflow-wrap@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d62\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-reduce-transforms\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-reduce-transforms@1.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-reduce-transforms\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-reduce-transforms\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-reduce-transforms@1.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.4\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d54\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-reduce-initial\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-reduce-initial@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-reduce-initial\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-reduce-initial\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-reduce-initial@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d4a\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-reduce-idents\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-reduce-idents@2.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-reduce-idents\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-reduce-idents\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-reduce-idents@2.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.4.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d40\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-pseudoelements\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-pseudoelements@5.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-pseudoelements\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-pseudoelements\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-pseudoelements@5.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d35\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-pseudo-class-any-link\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-pseudo-class-any-link@4.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-pseudo-class-any-link\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-pseudo-class-any-link\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-pseudo-class-any-link@4.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d24\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-ordered-values\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-ordered-values@2.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-ordered-values\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-ordered-values\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-ordered-values@2.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.3\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5d09\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-normalize-url\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-normalize-url@3.0.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-normalize-url\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-normalize-url\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-normalize-url@3.0.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.8\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5cbd\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-normalize-charset\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-normalize-charset@1.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-normalize-charset\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-normalize-charset\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-normalize-charset@1.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5cb5\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-nesting\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-nesting@4.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-nesting\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-nesting\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-nesting@4.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5cab\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-modules-values\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-modules-values@1.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-modules-values\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-modules-values\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-modules-values@1.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5ca1\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-modules-scope\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-modules-scope@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-modules-scope\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-modules-scope\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-modules-scope@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5c94\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-modules-local-by-default\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-modules-local-by-default@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-modules-local-by-default\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-modules-local-by-default\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-modules-local-by-default@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5c89\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-modules-extract-imports\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-modules-extract-imports@1.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-modules-extract-imports\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-modules-extract-imports\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-modules-extract-imports@1.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5c7a\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-minify-selectors\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-minify-selectors@2.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-minify-selectors\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-minify-selectors\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-minify-selectors@2.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5c65\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-minify-params\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-minify-params@1.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-minify-params\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-minify-params\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-minify-params@1.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5c55\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-minify-gradients\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-minify-gradients@1.0.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-minify-gradients\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-minify-gradients\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-minify-gradients@1.0.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.5\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5c41\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-minify-font-values\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-minify-font-values@1.0.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-minify-font-values\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-minify-font-values\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-minify-font-values@1.0.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.5\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5c37\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-message-helpers\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-message-helpers@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-message-helpers\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-message-helpers\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-message-helpers@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5c24\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-merge-rules\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-merge-rules@2.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-merge-rules\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-merge-rules\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-merge-rules@2.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5c11\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-merge-longhand\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-merge-longhand@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-merge-longhand\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-merge-longhand\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-merge-longhand@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5c07\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-merge-idents\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-merge-idents@2.1.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-merge-idents\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-merge-idents\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-merge-idents@2.1.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.7\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5bfd\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-media-query-parser\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-media-query-parser@0.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-media-query-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-media-query-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-media-query-parser@0.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.3\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5bf4\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-media-minmax\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-media-minmax@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-media-minmax\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-media-minmax\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-media-minmax@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5bea\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-loader\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-loader@2.1.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-loader@2.1.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.6\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5be0\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-load-plugins\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-load-plugins@2.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-load-plugins\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-load-plugins\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-load-plugins@2.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5bd4\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-load-options\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-load-options@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-load-options\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-load-options\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-load-options@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5bc5\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-load-config\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-load-config@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-load-config\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-load-config\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-load-config@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5bbb\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-initial\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-initial@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-initial\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-initial\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-initial@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5bb1\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-import\",\n            \"versionMajor\": \"11\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-import@11.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-import\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-import\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-import@11.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"11.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5ba7\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-image-set-polyfill\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-image-set-polyfill@0.3.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-image-set-polyfill\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-image-set-polyfill\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-image-set-polyfill@0.3.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.5\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b9d\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-font-variant\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-font-variant@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-font-variant\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-font-variant\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-font-variant@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b91\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-font-family-system-ui\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-font-family-system-ui@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-font-family-system-ui\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-font-family-system-ui\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-font-family-system-ui@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b8a\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-filter-plugins\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-filter-plugins@2.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-filter-plugins\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-filter-plugins\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-filter-plugins@2.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.3\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b7f\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-discard-unused\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-discard-unused@2.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-discard-unused\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-discard-unused\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-discard-unused@2.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.3\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b6e\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-discard-overridden\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-discard-overridden@0.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-discard-overridden\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-discard-overridden\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-discard-overridden@0.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b5b\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-discard-empty\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-discard-empty@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-discard-empty\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-discard-empty\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-discard-empty@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b46\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-discard-duplicates\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-discard-duplicates@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-discard-duplicates\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-discard-duplicates\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-discard-duplicates@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b3a\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-discard-comments\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-discard-comments@2.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-discard-comments\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-discard-comments\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-discard-comments@2.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.4\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b30\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-custom-selectors\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-custom-selectors@4.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-custom-selectors\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-custom-selectors\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-custom-selectors@4.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b26\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-custom-properties\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-custom-properties@6.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-custom-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-custom-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-custom-properties@6.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.3.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b1c\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-custom-media\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-custom-media@6.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-custom-media\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-custom-media\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-custom-media@6.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5b12\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-cssnext\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-cssnext@3.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-cssnext\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-cssnext\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-cssnext@3.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5aff\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-convert-values\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-convert-values@2.6.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-convert-values\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-convert-values\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-convert-values@2.6.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5aec\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-colormin\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-colormin@2.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-colormin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-colormin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-colormin@2.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5ae6\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-color-rgba-fallback\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-color-rgba-fallback@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-color-rgba-fallback\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-color-rgba-fallback\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-color-rgba-fallback@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5adc\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-color-rgb\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-color-rgb@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-color-rgb\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-color-rgb\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-color-rgb@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5ad2\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-color-rebeccapurple\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-color-rebeccapurple@3.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-color-rebeccapurple\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-color-rebeccapurple\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-color-rebeccapurple@3.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5ac8\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-color-hwb\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-color-hwb@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-color-hwb\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-color-hwb\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-color-hwb@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5abe\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-color-hsl\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-color-hsl@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-color-hsl\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-color-hsl\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-color-hsl@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5ab4\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-color-hex-alpha\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-color-hex-alpha@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-color-hex-alpha\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-color-hex-alpha\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-color-hex-alpha@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5aa7\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-color-gray\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-color-gray@4.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-color-gray\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-color-gray\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-color-gray@4.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a9d\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-color-function\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-color-function@4.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-color-function\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-color-function\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-color-function@4.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a8d\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-calc\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-calc@6.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-calc\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-calc\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-calc@6.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.0.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a83\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-calc\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-calc@5.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-calc\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-calc\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-calc@5.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.3.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a76\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-attribute-case-insensitive\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-attribute-case-insensitive@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-attribute-case-insensitive\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-attribute-case-insensitive\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-attribute-case-insensitive@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a6f\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss-apply\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss-apply@0.8.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss-apply\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss-apply\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss-apply@0.8.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.8.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a65\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"36\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss@7.0.36\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss@7.0.36\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.0.36\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a59\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"23\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss@6.0.23\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss@6.0.23\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.0.23\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a4d\",\n            \"packageUrlNoVersion\": \"pkg:npm/postcss\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"18\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/postcss@5.2.18\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"postcss\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"postcss\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/postcss@5.2.18\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.18\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a32\",\n            \"packageUrlNoVersion\": \"pkg:npm/portfinder\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"20\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/portfinder@1.0.20\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"portfinder\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"portfinder\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/portfinder@1.0.20\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.20\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a2c\",\n            \"packageUrlNoVersion\": \"pkg:npm/pleeease-filters\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/pleeease-filters@4.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"pleeease-filters\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"pleeease-filters\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/pleeease-filters@4.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a24\",\n            \"packageUrlNoVersion\": \"pkg:npm/pkg-dir\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/pkg-dir@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"pkg-dir\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"pkg-dir\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/pkg-dir@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5a14\",\n            \"packageUrlNoVersion\": \"pkg:npm/pixrem\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/pixrem@4.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"pixrem\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"pixrem\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/pixrem@4.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef59f3\",\n            \"packageUrlNoVersion\": \"pkg:npm/picomatch\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/picomatch@2.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"picomatch\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"picomatch\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/picomatch@2.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef59de\",\n            \"packageUrlNoVersion\": \"pkg:npm/pbkdf2\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"17\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/pbkdf2@3.0.17\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"pbkdf2\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"pbkdf2\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/pbkdf2@3.0.17\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.17\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef59d2\",\n            \"packageUrlNoVersion\": \"pkg:npm/path-type\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/path-type@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"path-type\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"path-type\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/path-type@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef59cb\",\n            \"packageUrlNoVersion\": \"pkg:npm/path-type\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/path-type@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"path-type\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"path-type\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/path-type@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef59a9\",\n            \"packageUrlNoVersion\": \"pkg:npm/path-is-inside\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/path-is-inside@1.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"path-is-inside\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"path-is-inside\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/path-is-inside@1.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5992\",\n            \"packageUrlNoVersion\": \"pkg:npm/path-exists\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/path-exists@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"path-exists\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"path-exists\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/path-exists@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5972\",\n            \"packageUrlNoVersion\": \"pkg:npm/path-browserify\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/path-browserify@0.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"path-browserify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"path-browserify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/path-browserify@0.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5953\",\n            \"packageUrlNoVersion\": \"pkg:npm/parse-json\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/parse-json@2.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"parse-json\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"parse-json\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/parse-json@2.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5949\",\n            \"packageUrlNoVersion\": \"pkg:npm/parse-glob\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/parse-glob@3.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"parse-glob\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"parse-glob\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/parse-glob@3.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.4\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5936\",\n            \"packageUrlNoVersion\": \"pkg:npm/parse-asn1\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/parse-asn1@5.1.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"parse-asn1\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"parse-asn1\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/parse-asn1@5.1.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.1.4\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5923\",\n            \"packageUrlNoVersion\": \"pkg:npm/parallel-transform\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/parallel-transform@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"parallel-transform\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"parallel-transform\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/parallel-transform@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5911\",\n            \"packageUrlNoVersion\": \"pkg:npm/pako\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"10\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/pako@1.0.10\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"pako\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"pako\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/pako@1.0.10\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.10\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef58f4\",\n            \"packageUrlNoVersion\": \"pkg:npm/p-map\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/p-map@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"p-map\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"p-map\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/p-map@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef58ba\",\n            \"packageUrlNoVersion\": \"pkg:npm/os-locale\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/os-locale@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"os-locale\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"os-locale\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/os-locale@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef58ae\",\n            \"packageUrlNoVersion\": \"pkg:npm/os-locale\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/os-locale@1.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"os-locale\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"os-locale\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/os-locale@1.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5896\",\n            \"packageUrlNoVersion\": \"pkg:npm/original\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/original@1.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"original\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"original\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/original@1.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef588c\",\n            \"packageUrlNoVersion\": \"pkg:npm/optimize-css-assets-webpack-plugin\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/optimize-css-assets-webpack-plugin@3.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"optimize-css-assets-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"optimize-css-assets-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/optimize-css-assets-webpack-plugin@3.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5882\",\n            \"packageUrlNoVersion\": \"pkg:npm/optimize-css-assets-webpack-plugin\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/optimize-css-assets-webpack-plugin@3.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"optimize-css-assets-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"optimize-css-assets-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/optimize-css-assets-webpack-plugin@3.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5878\",\n            \"packageUrlNoVersion\": \"pkg:npm/opn\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/opn@5.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"opn\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"opn\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/opn@5.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.5.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef586e\",\n            \"packageUrlNoVersion\": \"pkg:npm/onecolor\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/onecolor@3.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"onecolor\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"onecolor\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/onecolor@3.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5844\",\n            \"packageUrlNoVersion\": \"pkg:npm/object.values\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/object.values@1.1.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"object.values\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"object.values\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/object.values@1.1.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.4\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5832\",\n            \"packageUrlNoVersion\": \"pkg:npm/object.omit\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/object.omit@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"object.omit\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"object.omit\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/object.omit@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5828\",\n            \"packageUrlNoVersion\": \"pkg:npm/object.getownpropertydescriptors\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/object.getownpropertydescriptors@2.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"object.getownpropertydescriptors\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"object.getownpropertydescriptors\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/object.getownpropertydescriptors@2.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef57fc\",\n            \"packageUrlNoVersion\": \"pkg:npm/object-inspect\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/object-inspect@1.11.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"object-inspect\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"object-inspect\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/object-inspect@1.11.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.11.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef57b4\",\n            \"packageUrlNoVersion\": \"pkg:npm/npm-run-path\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/npm-run-path@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"npm-run-path\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"npm-run-path\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/npm-run-path@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5760\",\n            \"packageUrlNoVersion\": \"pkg:gem/nokogiri\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/nokogiri@1.11.7-x86_64-darwin\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"nokogiri\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"nokogiri\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/nokogiri@1.11.7-x86_64-darwin\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.11.7-x86_64-darwin\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5756\",\n            \"packageUrlNoVersion\": \"pkg:npm/node-sass\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"14\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/node-sass@4.14.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"node-sass\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"node-sass\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/node-sass@4.14.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.14.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef574c\",\n            \"packageUrlNoVersion\": \"pkg:npm/node-sass\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/node-sass@4.12.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"node-sass\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"node-sass\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/node-sass@4.12.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.12.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5742\",\n            \"packageUrlNoVersion\": \"pkg:npm/node-releases\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"73\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/node-releases@1.1.73\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"node-releases\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"node-releases\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/node-releases@1.1.73\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.73\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef572d\",\n            \"packageUrlNoVersion\": \"pkg:npm/node-libs-browser\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/node-libs-browser@2.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"node-libs-browser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"node-libs-browser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/node-libs-browser@2.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5723\",\n            \"packageUrlNoVersion\": \"pkg:npm/node-gyp\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/node-gyp@3.8.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"node-gyp\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"node-gyp\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/node-gyp@3.8.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.8.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5718\",\n            \"packageUrlNoVersion\": \"pkg:npm/node-forge\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/node-forge@0.7.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"node-forge\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"node-forge\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/node-forge@0.7.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.5\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef570d\",\n            \"packageUrlNoVersion\": \"pkg:npm/node-forge\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/node-forge@0.10.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"node-forge\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"node-forge\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/node-forge@0.10.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.10.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5703\",\n            \"packageUrlNoVersion\": \"pkg:gem/nio4r\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/nio4r@2.5.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"nio4r\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"nio4r\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/nio4r@2.5.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.5.7\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef56e4\",\n            \"packageUrlNoVersion\": \"pkg:npm/neo-async\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/neo-async@2.6.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"neo-async\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"neo-async\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/neo-async@2.6.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef56cc\",\n            \"packageUrlNoVersion\": \"pkg:npm/nan\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"14\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/nan@2.14.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"nan\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"nan\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/nan@2.14.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.14.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef56c2\",\n            \"packageUrlNoVersion\": \"pkg:npm/nan\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/nan@2.13.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"nan\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"nan\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/nan@2.13.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.13.2\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5661\",\n            \"packageUrlNoVersion\": \"pkg:npm/mkdirp\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mkdirp@0.5.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mkdirp\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mkdirp\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mkdirp@0.5.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5650\",\n            \"packageUrlNoVersion\": \"pkg:npm/mixin-object\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mixin-object@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mixin-object\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mixin-object\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mixin-object@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5647\",\n            \"packageUrlNoVersion\": \"pkg:npm/mixin-deep\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mixin-deep@1.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mixin-deep\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mixin-deep\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mixin-deep@1.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef563d\",\n            \"packageUrlNoVersion\": \"pkg:npm/mississippi\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mississippi@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mississippi\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mississippi\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mississippi@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5633\",\n            \"packageUrlNoVersion\": \"pkg:gem/minitest\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"14\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/minitest@5.14.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"minitest\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"minitest\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/minitest@5.14.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.14.4\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef561f\",\n            \"packageUrlNoVersion\": \"pkg:npm/minimist\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/minimist@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"minimist\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"minimist\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/minimist@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef55fa\",\n            \"packageUrlNoVersion\": \"pkg:gem/mini_portile2\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/mini_portile2@2.5.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mini_portile2\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mini_portile2\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/mini_portile2@2.5.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.5.3\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef55f0\",\n            \"packageUrlNoVersion\": \"pkg:gem/mini_mime\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/mini_mime@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mini_mime\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mini_mime\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/mini_mime@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef55e6\",\n            \"packageUrlNoVersion\": \"pkg:npm/min-document\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"19\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/min-document@2.19.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"min-document\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"min-document\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/min-document@2.19.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.19.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef55dc\",\n            \"packageUrlNoVersion\": \"pkg:npm/mimic-fn\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mimic-fn@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mimic-fn\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mimic-fn\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mimic-fn@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef55c8\",\n            \"packageUrlNoVersion\": \"pkg:gem/mime-types\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/mime-types@3.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mime-types\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mime-types\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/mime-types@3.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.3.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef55be\",\n            \"packageUrlNoVersion\": \"pkg:npm/mime-types\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"32\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mime-types@2.1.32\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mime-types\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mime-types\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mime-types@2.1.32\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.32\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef55b4\",\n            \"packageUrlNoVersion\": \"pkg:npm/mime-types\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"24\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mime-types@2.1.24\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mime-types\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mime-types\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mime-types@2.1.24\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.24\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef55aa\",\n            \"packageUrlNoVersion\": \"pkg:npm/mime-db\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"49\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mime-db@1.49.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mime-db\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mime-db\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mime-db@1.49.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.49.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef55a0\",\n            \"packageUrlNoVersion\": \"pkg:npm/mime-db\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"40\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mime-db@1.40.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mime-db\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mime-db\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mime-db@1.40.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.40.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef558d\",\n            \"packageUrlNoVersion\": \"pkg:npm/mime\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mime@1.4.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mime\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mime\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mime@1.4.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5571\",\n            \"packageUrlNoVersion\": \"pkg:npm/micromatch\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"11\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/micromatch@2.3.11\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"micromatch\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"micromatch\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/micromatch@2.3.11\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.11\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5548\",\n            \"packageUrlNoVersion\": \"pkg:npm/meow\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/meow@3.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"meow\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"meow\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/meow@3.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.7.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5541\",\n            \"packageUrlNoVersion\": \"pkg:npm/mem\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/mem@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"mem\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"mem\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/mem@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef552f\",\n            \"packageUrlNoVersion\": \"pkg:npm/math-random\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/math-random@1.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"math-random\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"math-random\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/math-random@1.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.4\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5525\",\n            \"packageUrlNoVersion\": \"pkg:npm/math-expression-evaluator\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/math-expression-evaluator@1.3.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"math-expression-evaluator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"math-expression-evaluator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/math-expression-evaluator@1.3.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.8\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef551b\",\n            \"packageUrlNoVersion\": \"pkg:npm/math-expression-evaluator\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"17\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/math-expression-evaluator@1.2.17\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"math-expression-evaluator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"math-expression-evaluator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/math-expression-evaluator@1.2.17\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.17\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef5511\",\n            \"packageUrlNoVersion\": \"pkg:gem/marcel\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/marcel@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"marcel\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"marcel\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/marcel@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef54fe\",\n            \"packageUrlNoVersion\": \"pkg:npm/map-obj\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/map-obj@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"map-obj\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"map-obj\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/map-obj@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef54d0\",\n            \"packageUrlNoVersion\": \"pkg:npm/loud-rejection\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/loud-rejection@1.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"loud-rejection\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"loud-rejection\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/loud-rejection@1.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.6.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef54bf\",\n            \"packageUrlNoVersion\": \"pkg:gem/loofah\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/loofah@2.10.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"loofah\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"loofah\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/loofah@2.10.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.10.0\"\n        },\n        {\n            \"_id\": \"63627fcc8dbe1c01b9ef54ad\",\n            \"packageUrlNoVersion\": \"pkg:npm/loglevel\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/loglevel@1.7.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"loglevel\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"loglevel\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/loglevel@1.7.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.7.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef54a8\",\n            \"packageUrlNoVersion\": \"pkg:npm/loglevel\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/loglevel@1.6.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"loglevel\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"loglevel\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/loglevel@1.6.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.6.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef549e\",\n            \"packageUrlNoVersion\": \"pkg:npm/lodash.templatesettings\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lodash.templatesettings@4.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lodash.templatesettings\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lodash.templatesettings\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lodash.templatesettings@4.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5494\",\n            \"packageUrlNoVersion\": \"pkg:npm/lodash.templatesettings\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lodash.templatesettings@4.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lodash.templatesettings\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lodash.templatesettings\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lodash.templatesettings@4.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef548f\",\n            \"packageUrlNoVersion\": \"pkg:npm/lodash.template\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lodash.template@4.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lodash.template\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lodash.template\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lodash.template@4.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.5.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef548c\",\n            \"packageUrlNoVersion\": \"pkg:npm/lodash.template\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lodash.template@4.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lodash.template\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lodash.template\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lodash.template@4.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.4.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef548b\",\n            \"packageUrlNoVersion\": \"pkg:npm/lodash.tail\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lodash.tail@4.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lodash.tail\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lodash.tail\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lodash.tail@4.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5477\",\n            \"packageUrlNoVersion\": \"pkg:npm/lodash._reinterpolate\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lodash._reinterpolate@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lodash._reinterpolate\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lodash._reinterpolate\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lodash._reinterpolate@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5465\",\n            \"packageUrlNoVersion\": \"pkg:npm/lodash\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"17\",\n            \"versionPatch\": \"11\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lodash@4.17.11\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lodash\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lodash\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lodash@4.17.11\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.17.11\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5440\",\n            \"packageUrlNoVersion\": \"pkg:npm/loader-utils\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/loader-utils@1.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"loader-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"loader-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/loader-utils@1.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef542d\",\n            \"packageUrlNoVersion\": \"pkg:npm/load-json-file\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/load-json-file@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"load-json-file\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"load-json-file\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/load-json-file@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5423\",\n            \"packageUrlNoVersion\": \"pkg:npm/load-json-file\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/load-json-file@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"load-json-file\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"load-json-file\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/load-json-file@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5410\",\n            \"packageUrlNoVersion\": \"pkg:npm/lcid\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/lcid@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"lcid\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"lcid\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/lcid@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef53fc\",\n            \"packageUrlNoVersion\": \"pkg:npm/last-call-webpack-plugin\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/last-call-webpack-plugin@2.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"last-call-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"last-call-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/last-call-webpack-plugin@2.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef53f2\",\n            \"packageUrlNoVersion\": \"pkg:npm/klaw\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/klaw@1.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"klaw\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"klaw\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/klaw@1.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef53c7\",\n            \"packageUrlNoVersion\": \"pkg:npm/killable\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/killable@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"killable\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"killable\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/killable@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef53b4\",\n            \"packageUrlNoVersion\": \"pkg:npm/jsonfile\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/jsonfile@2.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"jsonfile\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"jsonfile\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/jsonfile@2.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.4.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef53a2\",\n            \"packageUrlNoVersion\": \"pkg:npm/json5\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/json5@0.5.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"json5\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"json5\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/json5@0.5.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5398\",\n            \"packageUrlNoVersion\": \"pkg:npm/json3\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/json3@3.3.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.362Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"json3\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"json3\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/json3@3.3.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.3.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5374\",\n            \"packageUrlNoVersion\": \"pkg:npm/json-schema-traverse\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/json-schema-traverse@0.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"json-schema-traverse\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"json-schema-traverse\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/json-schema-traverse@0.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef535a\",\n            \"packageUrlNoVersion\": \"pkg:npm/json-loader\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/json-loader@0.5.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"json-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"json-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/json-loader@0.5.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.7\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5350\",\n            \"packageUrlNoVersion\": \"pkg:npm/jsesc\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/jsesc@1.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"jsesc\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"jsesc\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/jsesc@1.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5336\",\n            \"packageUrlNoVersion\": \"pkg:npm/js-yaml\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/js-yaml@3.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"js-yaml\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"js-yaml\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/js-yaml@3.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.7.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef532d\",\n            \"packageUrlNoVersion\": \"pkg:npm/js-yaml\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/js-yaml@3.13.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"js-yaml\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"js-yaml\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/js-yaml@3.13.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.13.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef531b\",\n            \"packageUrlNoVersion\": \"pkg:npm/js-tokens\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/js-tokens@3.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"js-tokens\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"js-tokens\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/js-tokens@3.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5311\",\n            \"packageUrlNoVersion\": \"pkg:npm/js-base64\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/js-base64@2.6.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"js-base64\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"js-base64\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/js-base64@2.6.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.4\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5307\",\n            \"packageUrlNoVersion\": \"pkg:npm/js-base64\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/js-base64@2.5.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"js-base64\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"js-base64\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/js-base64@2.5.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.5.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef52fd\",\n            \"packageUrlNoVersion\": \"pkg:gem/jquery-rails\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/jquery-rails@4.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"jquery-rails\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"jquery-rails\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/jquery-rails@4.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.4.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef52f3\",\n            \"packageUrlNoVersion\": \"pkg:gem/jbuilder\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/jbuilder@2.11.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"jbuilder\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"jbuilder\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/jbuilder@2.11.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.11.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef52cf\",\n            \"packageUrlNoVersion\": \"pkg:npm/isnumeric\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/isnumeric@0.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"isnumeric\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"isnumeric\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/isnumeric@0.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef52a6\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-utf8\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-utf8@0.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-utf8\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-utf8\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-utf8@0.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef529c\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-symbol\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-symbol@1.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-symbol\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-symbol\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-symbol@1.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5292\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-svg\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-svg@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-svg\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-svg\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-svg@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5288\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-string\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-string@1.0.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-string\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-string\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-string@1.0.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.6\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef526d\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-regex\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-regex@1.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-regex@1.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5263\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-regex\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-regex@1.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-regex@1.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.4\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5255\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-primitive\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-primitive@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-primitive\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-primitive\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-primitive@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef524b\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-posix-bracket\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-posix-bracket@0.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-posix-bracket\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-posix-bracket\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-posix-bracket@0.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5233\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-path-inside\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-path-inside@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-path-inside\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-path-inside\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-path-inside@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5229\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-path-in-cwd\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-path-in-cwd@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-path-in-cwd\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-path-in-cwd\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-path-in-cwd@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef521f\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-path-cwd\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-path-cwd@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-path-cwd\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-path-cwd\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-path-cwd@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef520c\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-number-object\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-number-object@1.0.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-number-object\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-number-object\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-number-object@1.0.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.5\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef51f9\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-number\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-number@4.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-number\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-number\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-number@4.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef51e6\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-number\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-number@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-number\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-number\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-number@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef51dc\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-negative-zero\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-negative-zero@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-negative-zero\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-negative-zero\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-negative-zero@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef51d2\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-glob\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-glob@4.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-glob\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-glob\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-glob@4.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef51bf\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-glob\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-glob@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-glob\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-glob\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-glob@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef51a0\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-finite\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-finite@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-finite\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-finite\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-finite@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef519a\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-finite\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-finite@1.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-finite\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-finite\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-finite@1.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5187\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-extglob\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-extglob@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-extglob\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-extglob\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-extglob@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef516b\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-equal-shallow\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-equal-shallow@0.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-equal-shallow\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-equal-shallow\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-equal-shallow@0.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5161\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-dotfile\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-dotfile@1.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-dotfile\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-dotfile\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-dotfile@1.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5145\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-date-object\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-date-object@1.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-date-object\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-date-object\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-date-object@1.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.4\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef513b\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-date-object\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-date-object@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-date-object\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-date-object\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-date-object@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef511d\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-core-module\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-core-module@2.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-core-module\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-core-module\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-core-module@2.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.5.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5104\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-callable\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-callable@1.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-callable\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-callable\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-callable@1.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5101\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-callable\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-callable@1.1.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-callable\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-callable\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-callable@1.1.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.4\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef50f9\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-boolean-object\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-boolean-object@1.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-boolean-object\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-boolean-object\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-boolean-object@1.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef50f0\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-bigint\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-bigint@1.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-bigint\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-bigint\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-bigint@1.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef50e4\",\n            \"packageUrlNoVersion\": \"pkg:npm/is-arguments\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/is-arguments@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"is-arguments\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"is-arguments\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/is-arguments@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef50d4\",\n            \"packageUrlNoVersion\": \"pkg:npm/ipaddr.js\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"9\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ipaddr.js@1.9.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ipaddr.js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ipaddr.js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ipaddr.js@1.9.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.9.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef50c6\",\n            \"packageUrlNoVersion\": \"pkg:gem/io-like\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/io-like@0.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"io-like\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"io-like\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/io-like@0.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef50c1\",\n            \"packageUrlNoVersion\": \"pkg:npm/invert-kv\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/invert-kv@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"invert-kv\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"invert-kv\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/invert-kv@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef50ad\",\n            \"packageUrlNoVersion\": \"pkg:npm/interpret\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/interpret@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"interpret\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"interpret\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/interpret@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef50a6\",\n            \"packageUrlNoVersion\": \"pkg:npm/internal-ip\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/internal-ip@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"internal-ip\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"internal-ip\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/internal-ip@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef507f\",\n            \"packageUrlNoVersion\": \"pkg:npm/indent-string\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/indent-string@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"indent-string\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"indent-string\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/indent-string@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef507b\",\n            \"packageUrlNoVersion\": \"pkg:npm/in-publish\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/in-publish@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"in-publish\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"in-publish\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/in-publish@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5075\",\n            \"packageUrlNoVersion\": \"pkg:npm/in-publish\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/in-publish@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"in-publish\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"in-publish\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/in-publish@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef506d\",\n            \"packageUrlNoVersion\": \"pkg:npm/import-local\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/import-local@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"import-local\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"import-local\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/import-local@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef504e\",\n            \"packageUrlNoVersion\": \"pkg:npm/icss-utils\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/icss-utils@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"icss-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"icss-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/icss-utils@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5048\",\n            \"packageUrlNoVersion\": \"pkg:npm/icss-replace-symbols\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/icss-replace-symbols@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"icss-replace-symbols\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"icss-replace-symbols\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/icss-replace-symbols@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef503e\",\n            \"packageUrlNoVersion\": \"pkg:npm/iconv-lite\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"23\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/iconv-lite@0.4.23\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"iconv-lite\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"iconv-lite\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/iconv-lite@0.4.23\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.23\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5037\",\n            \"packageUrlNoVersion\": \"pkg:gem/i18n\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"10\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/i18n@1.8.10\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"i18n\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"i18n\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/i18n@1.8.10\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.8.10\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef501e\",\n            \"packageUrlNoVersion\": \"pkg:gem/httparty\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"18\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/httparty@0.18.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"httparty\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"httparty\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/httparty@0.18.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.18.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5015\",\n            \"packageUrlNoVersion\": \"pkg:npm/http-proxy-middleware\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"17\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/http-proxy-middleware@0.17.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"http-proxy-middleware\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"http-proxy-middleware\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/http-proxy-middleware@0.17.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.17.4\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef500a\",\n            \"packageUrlNoVersion\": \"pkg:npm/http-proxy\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"17\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/http-proxy@1.17.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"http-proxy\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"http-proxy\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/http-proxy@1.17.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.17.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef5004\",\n            \"packageUrlNoVersion\": \"pkg:npm/http-parser-js\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/http-parser-js@0.5.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"http-parser-js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"http-parser-js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/http-parser-js@0.5.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ffe\",\n            \"packageUrlNoVersion\": \"pkg:npm/http-parser-js\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/http-parser-js@0.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"http-parser-js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"http-parser-js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/http-parser-js@0.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ff8\",\n            \"packageUrlNoVersion\": \"pkg:npm/http-errors\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/http-errors@1.7.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"http-errors\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"http-errors\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/http-errors@1.7.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.7.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4fe3\",\n            \"packageUrlNoVersion\": \"pkg:npm/html-entities\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/html-entities@1.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"html-entities\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"html-entities\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/html-entities@1.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4fdb\",\n            \"packageUrlNoVersion\": \"pkg:npm/html-entities\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/html-entities@1.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"html-entities\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"html-entities\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/html-entities@1.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4fd4\",\n            \"packageUrlNoVersion\": \"pkg:npm/html-comment-regex\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/html-comment-regex@1.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"html-comment-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"html-comment-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/html-comment-regex@1.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4faf\",\n            \"packageUrlNoVersion\": \"pkg:npm/hosted-git-info\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/hosted-git-info@2.8.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"hosted-git-info\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"hosted-git-info\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/hosted-git-info@2.8.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.8.9\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4fa5\",\n            \"packageUrlNoVersion\": \"pkg:npm/hosted-git-info\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/hosted-git-info@2.7.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"hosted-git-info\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"hosted-git-info\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/hosted-git-info@2.7.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.7.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4f94\",\n            \"packageUrlNoVersion\": \"pkg:npm/home-or-tmp\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/home-or-tmp@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"home-or-tmp\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"home-or-tmp\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/home-or-tmp@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4f5d\",\n            \"packageUrlNoVersion\": \"pkg:npm/hash-base\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/hash-base@3.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"hash-base\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"hash-base\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/hash-base@3.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.4\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4f19\",\n            \"packageUrlNoVersion\": \"pkg:npm/has-symbols\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/has-symbols@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"has-symbols\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"has-symbols\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/has-symbols@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4f0f\",\n            \"packageUrlNoVersion\": \"pkg:npm/has-flag\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/has-flag@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"has-flag\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"has-flag\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/has-flag@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4f05\",\n            \"packageUrlNoVersion\": \"pkg:npm/has-flag\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/has-flag@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"has-flag\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"has-flag\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/has-flag@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ee2\",\n            \"packageUrlNoVersion\": \"pkg:npm/har-validator\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/har-validator@5.1.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"har-validator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"har-validator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/har-validator@5.1.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.1.5\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ec8\",\n            \"packageUrlNoVersion\": \"pkg:npm/handle-thing\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/handle-thing@1.2.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"handle-thing\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"handle-thing\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/handle-thing@1.2.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.5\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ebe\",\n            \"packageUrlNoVersion\": \"pkg:npm/graceful-fs\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/graceful-fs@4.2.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"graceful-fs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"graceful-fs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/graceful-fs@4.2.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.6\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4eb4\",\n            \"packageUrlNoVersion\": \"pkg:npm/graceful-fs\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"15\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/graceful-fs@4.1.15\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"graceful-fs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"graceful-fs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/graceful-fs@4.1.15\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.15\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4eaa\",\n            \"packageUrlNoVersion\": \"pkg:gem/gon\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/gon@6.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"gon\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"gon\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/gon@6.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.4.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ea0\",\n            \"packageUrlNoVersion\": \"pkg:npm/globule\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/globule@1.3.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"globule\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"globule\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/globule@1.3.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e96\",\n            \"packageUrlNoVersion\": \"pkg:npm/globule\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/globule@1.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"globule\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"globule\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/globule@1.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e8b\",\n            \"packageUrlNoVersion\": \"pkg:npm/globby\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/globby@6.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"globby\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"globby\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/globby@6.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e82\",\n            \"packageUrlNoVersion\": \"pkg:npm/globals\",\n            \"versionMajor\": \"9\",\n            \"versionMinor\": \"18\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/globals@9.18.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"globals\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"globals\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/globals@9.18.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"9.18.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e78\",\n            \"packageUrlNoVersion\": \"pkg:gem/globalid\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/globalid@0.4.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"globalid\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"globalid\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/globalid@0.4.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e6d\",\n            \"packageUrlNoVersion\": \"pkg:npm/global\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/global@4.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"global\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"global\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/global@4.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.4.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e5e\",\n            \"packageUrlNoVersion\": \"pkg:npm/global\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/global@4.3.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"global\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"global\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/global@4.3.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.3.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e49\",\n            \"packageUrlNoVersion\": \"pkg:npm/glob-parent\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/glob-parent@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"glob-parent\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"glob-parent\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/glob-parent@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e3f\",\n            \"packageUrlNoVersion\": \"pkg:npm/glob-base\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/glob-base@0.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"glob-base\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"glob-base\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/glob-base@0.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e35\",\n            \"packageUrlNoVersion\": \"pkg:npm/glob\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/glob@7.1.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"glob\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"glob\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/glob@7.1.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.1.7\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e2b\",\n            \"packageUrlNoVersion\": \"pkg:npm/glob\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/glob@7.1.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"glob\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"glob\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/glob@7.1.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.1.4\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4e0f\",\n            \"packageUrlNoVersion\": \"pkg:npm/get-stdin\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/get-stdin@4.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"get-stdin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"get-stdin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/get-stdin@4.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4df4\",\n            \"packageUrlNoVersion\": \"pkg:npm/get-caller-file\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/get-caller-file@1.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"get-caller-file\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"get-caller-file\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/get-caller-file@1.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4dea\",\n            \"packageUrlNoVersion\": \"pkg:npm/gaze\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/gaze@1.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"gaze\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"gaze\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/gaze@1.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4dbc\",\n            \"packageUrlNoVersion\": \"pkg:npm/fsevents\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/fsevents@1.2.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"fsevents\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"fsevents\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/fsevents@1.2.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.9\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4d93\",\n            \"packageUrlNoVersion\": \"pkg:npm/fs-extra\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"30\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/fs-extra@0.30.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"fs-extra\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"fs-extra\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/fs-extra@0.30.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.30.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4d47\",\n            \"packageUrlNoVersion\": \"pkg:npm/for-own\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/for-own@0.1.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"for-own\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"for-own\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/for-own@0.1.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.5\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4d36\",\n            \"packageUrlNoVersion\": \"pkg:npm/for-in\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/for-in@0.1.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"for-in\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"for-in\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/for-in@0.1.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.8\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4d2c\",\n            \"packageUrlNoVersion\": \"pkg:npm/follow-redirects\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/follow-redirects@1.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"follow-redirects\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"follow-redirects\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/follow-redirects@1.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.7.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4d22\",\n            \"packageUrlNoVersion\": \"pkg:npm/follow-redirects\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"14\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/follow-redirects@1.14.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"follow-redirects\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"follow-redirects\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/follow-redirects@1.14.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.14.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4d06\",\n            \"packageUrlNoVersion\": \"pkg:npm/flatten\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/flatten@1.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"flatten\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"flatten\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/flatten@1.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4cea\",\n            \"packageUrlNoVersion\": \"pkg:npm/find-up\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/find-up@1.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"find-up\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"find-up\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/find-up@1.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4cde\",\n            \"packageUrlNoVersion\": \"pkg:npm/find-cache-dir\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/find-cache-dir@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"find-cache-dir\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"find-cache-dir\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/find-cache-dir@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ccb\",\n            \"packageUrlNoVersion\": \"pkg:npm/finalhandler\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/finalhandler@1.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"finalhandler\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"finalhandler\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/finalhandler@1.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4cbc\",\n            \"packageUrlNoVersion\": \"pkg:npm/fill-range\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/fill-range@2.2.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"fill-range\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"fill-range\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/fill-range@2.2.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.4\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4cb2\",\n            \"packageUrlNoVersion\": \"pkg:npm/filename-regex\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/filename-regex@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"filename-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"filename-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/filename-regex@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4c9b\",\n            \"packageUrlNoVersion\": \"pkg:npm/file-loader\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"11\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/file-loader@1.1.11\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"file-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"file-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/file-loader@1.1.11\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.11\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4c8b\",\n            \"packageUrlNoVersion\": \"pkg:gem/ffi\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"15\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/ffi@1.15.3-x64-mingw32\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ffi\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ffi\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/ffi@1.15.3-x64-mingw32\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.15.3-x64-mingw32\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4c81\",\n            \"packageUrlNoVersion\": \"pkg:npm/faye-websocket\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/faye-websocket@0.10.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"faye-websocket\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"faye-websocket\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/faye-websocket@0.10.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.10.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4c70\",\n            \"packageUrlNoVersion\": \"pkg:npm/fastparse\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/fastparse@1.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"fastparse\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"fastparse\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/fastparse@1.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4c62\",\n            \"packageUrlNoVersion\": \"pkg:npm/fast-json-stable-stringify\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/fast-json-stable-stringify@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"fast-json-stable-stringify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"fast-json-stable-stringify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/fast-json-stable-stringify@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4c5e\",\n            \"packageUrlNoVersion\": \"pkg:npm/fast-deep-equal\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/fast-deep-equal@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"fast-deep-equal\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"fast-deep-equal\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/fast-deep-equal@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4c54\",\n            \"packageUrlNoVersion\": \"pkg:npm/extsprintf\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/extsprintf@1.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"extsprintf\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"extsprintf\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/extsprintf@1.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4c4a\",\n            \"packageUrlNoVersion\": \"pkg:npm/extract-text-webpack-plugin\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/extract-text-webpack-plugin@3.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"extract-text-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"extract-text-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/extract-text-webpack-plugin@3.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4c37\",\n            \"packageUrlNoVersion\": \"pkg:npm/extglob\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/extglob@0.3.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"extglob\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"extglob\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/extglob@0.3.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4c04\",\n            \"packageUrlNoVersion\": \"pkg:npm/express\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"16\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/express@4.16.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"express\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"express\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/express@4.16.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.16.4\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4bfa\",\n            \"packageUrlNoVersion\": \"pkg:npm/expand-range\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/expand-range@1.8.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"expand-range\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"expand-range\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/expand-range@1.8.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.8.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4be9\",\n            \"packageUrlNoVersion\": \"pkg:npm/expand-brackets\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/expand-brackets@0.1.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"expand-brackets\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"expand-brackets\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/expand-brackets@0.1.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.5\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4bd6\",\n            \"packageUrlNoVersion\": \"pkg:npm/execa\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/execa@0.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"execa\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"execa\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/execa@0.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4bc3\",\n            \"packageUrlNoVersion\": \"pkg:npm/eventsource\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/eventsource@0.1.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"eventsource\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"eventsource\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/eventsource@0.1.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.6\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4bb0\",\n            \"packageUrlNoVersion\": \"pkg:npm/events\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/events@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"events\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"events\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/events@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ba6\",\n            \"packageUrlNoVersion\": \"pkg:npm/eventemitter3\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/eventemitter3@3.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"eventemitter3\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"eventemitter3\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/eventemitter3@3.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4b85\",\n            \"packageUrlNoVersion\": \"pkg:npm/esutils\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/esutils@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"esutils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"esutils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/esutils@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4b7b\",\n            \"packageUrlNoVersion\": \"pkg:npm/estraverse\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/estraverse@5.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"estraverse\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"estraverse\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/estraverse@5.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4b68\",\n            \"packageUrlNoVersion\": \"pkg:npm/estraverse\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/estraverse@4.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"estraverse\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"estraverse\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/estraverse@4.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4b55\",\n            \"packageUrlNoVersion\": \"pkg:npm/esrecurse\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/esrecurse@4.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"esrecurse\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"esrecurse\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/esrecurse@4.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4b49\",\n            \"packageUrlNoVersion\": \"pkg:npm/esprima\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/esprima@2.7.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"esprima\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"esprima\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/esprima@2.7.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.7.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4b3f\",\n            \"packageUrlNoVersion\": \"pkg:npm/escope\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/escope@3.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"escope\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"escope\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/escope@3.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.6.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4b30\",\n            \"packageUrlNoVersion\": \"pkg:npm/es6-weak-map\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/es6-weak-map@2.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"es6-weak-map\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"es6-weak-map\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/es6-weak-map@2.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4b26\",\n            \"packageUrlNoVersion\": \"pkg:npm/es6-weak-map\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/es6-weak-map@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"es6-weak-map\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"es6-weak-map\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/es6-weak-map@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ae6\",\n            \"packageUrlNoVersion\": \"pkg:npm/es5-ext\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"50\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/es5-ext@0.10.50\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"es5-ext\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"es5-ext\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/es5-ext@0.10.50\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.10.50\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ad6\",\n            \"packageUrlNoVersion\": \"pkg:npm/es-to-primitive\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/es-to-primitive@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"es-to-primitive\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"es-to-primitive\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/es-to-primitive@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4acb\",\n            \"packageUrlNoVersion\": \"pkg:npm/es-abstract\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"18\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/es-abstract@1.18.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"es-abstract\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"es-abstract\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/es-abstract@1.18.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.18.3\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4ac3\",\n            \"packageUrlNoVersion\": \"pkg:npm/es-abstract\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/es-abstract@1.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"es-abstract\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"es-abstract\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/es-abstract@1.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.13.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4aa5\",\n            \"packageUrlNoVersion\": \"pkg:npm/errno\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/errno@0.1.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"errno\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"errno\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/errno@0.1.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.7\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4a92\",\n            \"packageUrlNoVersion\": \"pkg:npm/enhanced-resolve\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/enhanced-resolve@3.4.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"enhanced-resolve\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"enhanced-resolve\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/enhanced-resolve@3.4.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.4.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4a81\",\n            \"packageUrlNoVersion\": \"pkg:npm/end-of-stream\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/end-of-stream@1.4.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"end-of-stream\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"end-of-stream\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/end-of-stream@1.4.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4a77\",\n            \"packageUrlNoVersion\": \"pkg:npm/emojis-list\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/emojis-list@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"emojis-list\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"emojis-list\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/emojis-list@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4a66\",\n            \"packageUrlNoVersion\": \"pkg:npm/elliptic\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/elliptic@6.4.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"elliptic\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"elliptic\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/elliptic@6.4.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.4.1\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4a5c\",\n            \"packageUrlNoVersion\": \"pkg:npm/electron-to-chromium\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"789\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/electron-to-chromium@1.3.789\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"electron-to-chromium\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"electron-to-chromium\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/electron-to-chromium@1.3.789\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.789\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4a4e\",\n            \"packageUrlNoVersion\": \"pkg:npm/electron-to-chromium\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"137\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/electron-to-chromium@1.3.137\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"electron-to-chromium\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"electron-to-chromium\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/electron-to-chromium@1.3.137\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.137\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4a1f\",\n            \"packageUrlNoVersion\": \"pkg:npm/domelementtype\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/domelementtype@2.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"domelementtype\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"domelementtype\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/domelementtype@2.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.0\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef4a03\",\n            \"packageUrlNoVersion\": \"pkg:npm/dom-walk\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/dom-walk@0.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"dom-walk\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"dom-walk\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/dom-walk@0.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.2\"\n        },\n        {\n            \"_id\": \"63627fcb8dbe1c01b9ef49f9\",\n            \"packageUrlNoVersion\": \"pkg:npm/dom-walk\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/dom-walk@0.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"dom-walk\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"dom-walk\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/dom-walk@0.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef49d4\",\n            \"packageUrlNoVersion\": \"pkg:npm/dns-packet\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/dns-packet@1.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"dns-packet\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"dns-packet\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/dns-packet@1.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef49c6\",\n            \"packageUrlNoVersion\": \"pkg:gem/diffy\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/diffy@3.4.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"diffy\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"diffy\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/diffy@3.4.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.4.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef49a8\",\n            \"packageUrlNoVersion\": \"pkg:npm/detect-node\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/detect-node@2.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"detect-node\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"detect-node\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/detect-node@2.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.4\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef49a0\",\n            \"packageUrlNoVersion\": \"pkg:npm/detect-indent\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/detect-indent@4.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"detect-indent\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"detect-indent\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/detect-indent@4.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef499a\",\n            \"packageUrlNoVersion\": \"pkg:npm/des.js\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/des.js@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"des.js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"des.js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/des.js@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4984\",\n            \"packageUrlNoVersion\": \"pkg:npm/del\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/del@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"del\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"del\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/del@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef494b\",\n            \"packageUrlNoVersion\": \"pkg:npm/deep-equal\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/deep-equal@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"deep-equal\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"deep-equal\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/deep-equal@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4915\",\n            \"packageUrlNoVersion\": \"pkg:npm/date-now\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/date-now@0.1.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"date-now\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"date-now\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/date-now@0.1.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.4\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef48fb\",\n            \"packageUrlNoVersion\": \"pkg:npm/d\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/d@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"d\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"d\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/d@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef48e8\",\n            \"packageUrlNoVersion\": \"pkg:npm/cyclist\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/cyclist@0.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"cyclist\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"cyclist\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/cyclist@0.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef48de\",\n            \"packageUrlNoVersion\": \"pkg:npm/currently-unhandled\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/currently-unhandled@0.4.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"currently-unhandled\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"currently-unhandled\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/currently-unhandled@0.4.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef48d4\",\n            \"packageUrlNoVersion\": \"pkg:npm/csso\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/csso@2.3.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"csso\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"csso\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/csso@2.3.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4894\",\n            \"packageUrlNoVersion\": \"pkg:npm/cssnano\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/cssnano@3.10.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"cssnano\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"cssnano\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/cssnano@3.10.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.10.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4881\",\n            \"packageUrlNoVersion\": \"pkg:npm/cssesc\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/cssesc@0.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"cssesc\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"cssesc\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/cssesc@0.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef486e\",\n            \"packageUrlNoVersion\": \"pkg:npm/css-unit-converter\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/css-unit-converter@1.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"css-unit-converter\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"css-unit-converter\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/css-unit-converter@1.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4864\",\n            \"packageUrlNoVersion\": \"pkg:npm/css-unit-converter\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/css-unit-converter@1.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"css-unit-converter\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"css-unit-converter\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/css-unit-converter@1.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4852\",\n            \"packageUrlNoVersion\": \"pkg:npm/css-selector-tokenizer\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/css-selector-tokenizer@0.7.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"css-selector-tokenizer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"css-selector-tokenizer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/css-selector-tokenizer@0.7.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.3\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4845\",\n            \"packageUrlNoVersion\": \"pkg:npm/css-selector-tokenizer\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/css-selector-tokenizer@0.7.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"css-selector-tokenizer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"css-selector-tokenizer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/css-selector-tokenizer@0.7.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4835\",\n            \"packageUrlNoVersion\": \"pkg:npm/css-loader\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"28\",\n            \"versionPatch\": \"11\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/css-loader@0.28.11\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"css-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"css-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/css-loader@0.28.11\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.28.11\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4819\",\n            \"packageUrlNoVersion\": \"pkg:npm/css-color-function\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/css-color-function@1.3.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"css-color-function\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"css-color-function\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/css-color-function@1.3.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.3\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4805\",\n            \"packageUrlNoVersion\": \"pkg:npm/cross-spawn\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/cross-spawn@5.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"cross-spawn\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"cross-spawn\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/cross-spawn@5.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.1.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef47fe\",\n            \"packageUrlNoVersion\": \"pkg:npm/cross-spawn\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/cross-spawn@3.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"cross-spawn\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"cross-spawn\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/cross-spawn@3.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef47e2\",\n            \"packageUrlNoVersion\": \"pkg:npm/create-ecdh\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/create-ecdh@4.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"create-ecdh\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"create-ecdh\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/create-ecdh@4.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.3\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef47c5\",\n            \"packageUrlNoVersion\": \"pkg:npm/cosmiconfig\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/cosmiconfig@2.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"cosmiconfig\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"cosmiconfig\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/cosmiconfig@2.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef47b2\",\n            \"packageUrlNoVersion\": \"pkg:npm/core-js\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/core-js@2.6.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"core-js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"core-js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/core-js@2.6.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.9\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef47a2\",\n            \"packageUrlNoVersion\": \"pkg:npm/core-js\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"12\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/core-js@2.6.12\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"core-js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"core-js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/core-js@2.6.12\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.12\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef477d\",\n            \"packageUrlNoVersion\": \"pkg:npm/convert-source-map\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/convert-source-map@1.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"convert-source-map\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"convert-source-map\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/convert-source-map@1.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.6.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef476a\",\n            \"packageUrlNoVersion\": \"pkg:npm/content-disposition\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/content-disposition@0.5.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"content-disposition\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"content-disposition\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/content-disposition@0.5.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4752\",\n            \"packageUrlNoVersion\": \"pkg:npm/consolidate\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"14\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/consolidate@0.14.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"consolidate\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"consolidate\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/consolidate@0.14.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.14.5\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef473c\",\n            \"packageUrlNoVersion\": \"pkg:npm/console-browserify\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/console-browserify@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"console-browserify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"console-browserify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/console-browserify@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef470c\",\n            \"packageUrlNoVersion\": \"pkg:npm/compression-webpack-plugin\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"12\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/compression-webpack-plugin@1.1.12\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"compression-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"compression-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/compression-webpack-plugin@1.1.12\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.12\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef46f5\",\n            \"packageUrlNoVersion\": \"pkg:npm/compressible\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"17\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/compressible@2.0.17\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"compressible\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"compressible\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/compressible@2.0.17\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.17\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef46f3\",\n            \"packageUrlNoVersion\": \"pkg:npm/commander\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/commander@2.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"commander\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"commander\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/commander@2.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.13.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef46ef\",\n            \"packageUrlNoVersion\": \"pkg:npm/colormin\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/colormin@1.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"colormin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"colormin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/colormin@1.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef46c4\",\n            \"packageUrlNoVersion\": \"pkg:npm/colorette\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/colorette@1.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"colorette\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"colorette\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/colorette@1.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef46a7\",\n            \"packageUrlNoVersion\": \"pkg:npm/color-string\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/color-string@1.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"color-string\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"color-string\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/color-string@1.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.6.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4690\",\n            \"packageUrlNoVersion\": \"pkg:npm/color-string\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/color-string@0.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"color-string\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"color-string\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/color-string@0.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef45b7\",\n            \"packageUrlNoVersion\": \"pkg:npm/color\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/color@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"color\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"color\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/color@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef45b2\",\n            \"packageUrlNoVersion\": \"pkg:npm/color\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/color@1.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"color\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"color\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/color@1.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.3\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef454c\",\n            \"packageUrlNoVersion\": \"pkg:npm/color\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/color@0.11.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"color\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"color\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/color@0.11.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.11.4\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4543\",\n            \"packageUrlNoVersion\": \"pkg:gem/coffee-script-source\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/coffee-script-source@1.12.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"coffee-script-source\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"coffee-script-source\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/coffee-script-source@1.12.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.12.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4537\",\n            \"packageUrlNoVersion\": \"pkg:gem/coffee-script\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/coffee-script@2.4.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"coffee-script\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"coffee-script\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/coffee-script@2.4.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.4.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef44d3\",\n            \"packageUrlNoVersion\": \"pkg:gem/coffee-rails\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/coffee-rails@4.2.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"coffee-rails\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"coffee-rails\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/coffee-rails@4.2.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4468\",\n            \"packageUrlNoVersion\": \"pkg:npm/coa\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/coa@1.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"coa\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"coa\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/coa@1.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.4\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef445d\",\n            \"packageUrlNoVersion\": \"pkg:npm/clone-deep\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/clone-deep@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"clone-deep\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"clone-deep\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/clone-deep@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef43de\",\n            \"packageUrlNoVersion\": \"pkg:npm/cliui\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/cliui@3.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"cliui\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"cliui\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/cliui@3.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef43c8\",\n            \"packageUrlNoVersion\": \"pkg:npm/clap\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/clap@1.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"clap\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"clap\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/clap@1.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.3\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef43b5\",\n            \"packageUrlNoVersion\": \"pkg:gem/chromedriver-helper\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/chromedriver-helper@2.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"chromedriver-helper\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"chromedriver-helper\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/chromedriver-helper@2.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef43a5\",\n            \"packageUrlNoVersion\": \"pkg:npm/chownr\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/chownr@1.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"chownr\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"chownr\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/chownr@1.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef436d\",\n            \"packageUrlNoVersion\": \"pkg:npm/chokidar\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/chokidar@2.1.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"chokidar\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"chokidar\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/chokidar@2.1.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.6\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4317\",\n            \"packageUrlNoVersion\": \"pkg:npm/case-sensitive-paths-webpack-plugin\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/case-sensitive-paths-webpack-plugin@2.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"case-sensitive-paths-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"case-sensitive-paths-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/case-sensitive-paths-webpack-plugin@2.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef42f7\",\n            \"packageUrlNoVersion\": \"pkg:npm/caniuse-lite\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"30001248\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/caniuse-lite@1.0.30001248\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"caniuse-lite\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"caniuse-lite\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/caniuse-lite@1.0.30001248\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.30001248\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef42e6\",\n            \"packageUrlNoVersion\": \"pkg:npm/caniuse-lite\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"30000971\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/caniuse-lite@1.0.30000971\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"caniuse-lite\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"caniuse-lite\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/caniuse-lite@1.0.30000971\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.30000971\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef42cf\",\n            \"packageUrlNoVersion\": \"pkg:npm/caniuse-db\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"30001248\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/caniuse-db@1.0.30001248\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"caniuse-db\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"caniuse-db\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/caniuse-db@1.0.30001248\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.30001248\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef42b8\",\n            \"packageUrlNoVersion\": \"pkg:npm/caniuse-db\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"30000971\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/caniuse-db@1.0.30000971\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"caniuse-db\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"caniuse-db\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/caniuse-db@1.0.30000971\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.30000971\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef429f\",\n            \"packageUrlNoVersion\": \"pkg:npm/caniuse-api\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/caniuse-api@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"caniuse-api\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"caniuse-api\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/caniuse-api@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef428e\",\n            \"packageUrlNoVersion\": \"pkg:npm/caniuse-api\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/caniuse-api@1.6.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"caniuse-api\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"caniuse-api\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/caniuse-api@1.6.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.6.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4283\",\n            \"packageUrlNoVersion\": \"pkg:npm/camelcase-keys\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/camelcase-keys@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"camelcase-keys\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"camelcase-keys\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/camelcase-keys@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4273\",\n            \"packageUrlNoVersion\": \"pkg:npm/camelcase\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/camelcase@4.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"camelcase\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"camelcase\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/camelcase@4.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4262\",\n            \"packageUrlNoVersion\": \"pkg:npm/camelcase\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/camelcase@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"camelcase\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"camelcase\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/camelcase@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef425b\",\n            \"packageUrlNoVersion\": \"pkg:npm/camelcase\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/camelcase@2.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"camelcase\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"camelcase\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/camelcase@2.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4215\",\n            \"packageUrlNoVersion\": \"pkg:npm/cacache\",\n            \"versionMajor\": \"10\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/cacache@10.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"cacache\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"cacache\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/cacache@10.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"10.0.4\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4129\",\n            \"packageUrlNoVersion\": \"pkg:npm/buffer\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"9\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/buffer@4.9.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"buffer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"buffer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/buffer@4.9.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.9.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4115\",\n            \"packageUrlNoVersion\": \"pkg:npm/browserslist\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"16\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/browserslist@4.16.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"browserslist\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"browserslist\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/browserslist@4.16.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.16.6\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef40be\",\n            \"packageUrlNoVersion\": \"pkg:npm/browserslist\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/browserslist@3.2.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"browserslist\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"browserslist\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/browserslist@3.2.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.8\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef40b4\",\n            \"packageUrlNoVersion\": \"pkg:npm/browserslist\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/browserslist@2.11.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"browserslist\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"browserslist\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/browserslist@2.11.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.11.3\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef40a8\",\n            \"packageUrlNoVersion\": \"pkg:npm/browserslist\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/browserslist@1.7.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"browserslist\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"browserslist\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/browserslist@1.7.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.7.7\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef408b\",\n            \"packageUrlNoVersion\": \"pkg:npm/browserify-sign\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/browserify-sign@4.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"browserify-sign\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"browserify-sign\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/browserify-sign@4.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.4\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4077\",\n            \"packageUrlNoVersion\": \"pkg:npm/browserify-rsa\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/browserify-rsa@4.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"browserify-rsa\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"browserify-rsa\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/browserify-rsa@4.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4049\",\n            \"packageUrlNoVersion\": \"pkg:npm/braces\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/braces@1.8.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"braces\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"braces\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/braces@1.8.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.8.5\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef403d\",\n            \"packageUrlNoVersion\": \"pkg:gem/bootsnap\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/bootsnap@1.7.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"bootsnap\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"bootsnap\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/bootsnap@1.7.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.7.6\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4029\",\n            \"packageUrlNoVersion\": \"pkg:npm/body-parser\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"19\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/body-parser@1.19.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"body-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"body-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/body-parser@1.19.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.19.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef401e\",\n            \"packageUrlNoVersion\": \"pkg:npm/body-parser\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"18\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/body-parser@1.18.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"body-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"body-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/body-parser@1.18.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.18.3\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef4003\",\n            \"packageUrlNoVersion\": \"pkg:npm/bn.js\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/bn.js@4.11.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"bn.js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"bn.js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/bn.js@4.11.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.11.8\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3ff3\",\n            \"packageUrlNoVersion\": \"pkg:npm/bluebird\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/bluebird@3.5.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"bluebird\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"bluebird\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/bluebird@3.5.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.5.4\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3fed\",\n            \"packageUrlNoVersion\": \"pkg:npm/block-stream\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/block-stream@0.0.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"block-stream\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"block-stream\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/block-stream@0.0.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.0.9\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3fcc\",\n            \"packageUrlNoVersion\": \"pkg:npm/bezier-easing\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/bezier-easing@2.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"bezier-easing\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"bezier-easing\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/bezier-easing@2.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3fb7\",\n            \"packageUrlNoVersion\": \"pkg:npm/base64-js\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/base64-js@1.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"base64-js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"base64-js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/base64-js@1.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f9a\",\n            \"packageUrlNoVersion\": \"pkg:npm/balanced-match\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/balanced-match@0.4.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"balanced-match\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"balanced-match\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/balanced-match@0.4.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f94\",\n            \"packageUrlNoVersion\": \"pkg:npm/balanced-match\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/balanced-match@0.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"balanced-match\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"balanced-match\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/balanced-match@0.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f7d\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-traverse\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-traverse@6.26.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-traverse\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-traverse\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-traverse@6.26.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f77\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-template\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-template@6.26.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-template\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-template\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-template@6.26.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f61\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-register\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-register@6.26.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-register\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-register\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-register@6.26.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f5a\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-preset-env\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-preset-env@1.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-preset-env\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-preset-env\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-preset-env@1.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.7.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f50\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-polyfill\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-polyfill@6.26.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-polyfill\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-polyfill\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-polyfill@6.26.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f46\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-strict-mode\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-strict-mode@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-strict-mode\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-strict-mode\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-strict-mode@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f3c\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-regenerator\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-regenerator@6.26.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-regenerator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-regenerator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-regenerator@6.26.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f32\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-object-rest-spread\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-object-rest-spread@6.26.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-object-rest-spread\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-object-rest-spread\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-object-rest-spread@6.26.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f24\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-exponentiation-operator\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-exponentiation-operator@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-exponentiation-operator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-exponentiation-operator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-exponentiation-operator@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f1e\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-unicode-regex\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-unicode-regex@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-unicode-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-unicode-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-unicode-regex@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f11\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-typeof-symbol\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"23\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-typeof-symbol@6.23.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-typeof-symbol\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-typeof-symbol\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-typeof-symbol@6.23.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.23.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3f09\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-template-literals\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"22\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-template-literals@6.22.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-template-literals\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-template-literals\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-template-literals@6.22.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.22.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3efe\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-sticky-regex\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-sticky-regex@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-sticky-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-sticky-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-sticky-regex@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3ef8\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-spread\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"22\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-spread@6.22.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-spread\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-spread\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-spread@6.22.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.22.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3eeb\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-shorthand-properties\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-shorthand-properties@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-shorthand-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-shorthand-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-shorthand-properties@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3ee3\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-parameters\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-parameters@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-parameters\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-parameters\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-parameters@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3ed6\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-object-super\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-object-super@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-object-super\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-object-super\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-object-super@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3ed0\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-modules-umd\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-modules-umd@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-modules-umd\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-modules-umd\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-modules-umd@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3ec8\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-modules-systemjs\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-modules-systemjs@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-modules-systemjs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-modules-systemjs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-modules-systemjs@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3ebd\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-modules-commonjs\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-modules-commonjs@6.26.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-modules-commonjs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-modules-commonjs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-modules-commonjs@6.26.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3eb5\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-modules-amd\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-modules-amd@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-modules-amd\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-modules-amd\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-modules-amd@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3ea6\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-literals\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"22\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-literals@6.22.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-literals\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-literals\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-literals@6.22.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.22.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e9c\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-function-name\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-function-name@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-function-name\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-function-name\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-function-name@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e96\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-for-of\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"23\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-for-of@6.23.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-for-of\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-for-of\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-for-of@6.23.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.23.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e89\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-duplicate-keys\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-duplicate-keys@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-duplicate-keys\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-duplicate-keys\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-duplicate-keys@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e82\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-destructuring\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"23\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-destructuring@6.23.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-destructuring\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-destructuring\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-destructuring@6.23.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.23.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e78\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-computed-properties\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-computed-properties@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-computed-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-computed-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-computed-properties@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e68\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-classes\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-classes@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-classes\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-classes\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-classes@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e62\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-block-scoping\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-block-scoping@6.26.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-block-scoping\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-block-scoping\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-block-scoping@6.26.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e5a\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-block-scoped-functions\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"22\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-block-scoped-functions@6.22.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-block-scoped-functions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-block-scoped-functions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-block-scoped-functions@6.22.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.22.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e51\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-es2015-arrow-functions\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"22\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-es2015-arrow-functions@6.22.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-es2015-arrow-functions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-es2015-arrow-functions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-es2015-arrow-functions@6.22.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.22.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e4a\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-class-properties\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-class-properties@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-class-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-class-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-class-properties@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e40\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-transform-async-to-generator\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-transform-async-to-generator@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-transform-async-to-generator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-transform-async-to-generator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-transform-async-to-generator@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e33\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-syntax-trailing-function-commas\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"22\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-syntax-trailing-function-commas@6.22.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-syntax-trailing-function-commas\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-syntax-trailing-function-commas\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-syntax-trailing-function-commas@6.22.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.22.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e2c\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-syntax-object-rest-spread\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-syntax-object-rest-spread@6.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-syntax-object-rest-spread\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-syntax-object-rest-spread\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-syntax-object-rest-spread@6.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.13.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e22\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-syntax-exponentiation-operator\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-syntax-exponentiation-operator@6.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-syntax-exponentiation-operator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-syntax-exponentiation-operator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-syntax-exponentiation-operator@6.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.13.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e15\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-syntax-dynamic-import\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"18\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-syntax-dynamic-import@6.18.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-syntax-dynamic-import\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-syntax-dynamic-import\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-syntax-dynamic-import@6.18.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.18.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3e09\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-syntax-class-properties\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-syntax-class-properties@6.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-syntax-class-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-syntax-class-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-syntax-class-properties@6.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.13.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3dff\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-syntax-async-functions\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"13\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-syntax-async-functions@6.13.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-syntax-async-functions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-syntax-async-functions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-syntax-async-functions@6.13.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.13.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3df7\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-plugin-check-es2015-constants\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"22\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-plugin-check-es2015-constants@6.22.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-plugin-check-es2015-constants\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-plugin-check-es2015-constants\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-plugin-check-es2015-constants@6.22.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.22.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3def\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-messages\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"23\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-messages@6.23.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-messages\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-messages\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-messages@6.23.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.23.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3de1\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-loader\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-loader@7.1.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-loader@7.1.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.1.5\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3ddb\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helpers\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helpers@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helpers\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helpers\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helpers@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3dcc\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-replace-supers\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-replace-supers@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-replace-supers\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-replace-supers\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-replace-supers@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3dc4\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-remap-async-to-generator\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-remap-async-to-generator@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-remap-async-to-generator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-remap-async-to-generator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-remap-async-to-generator@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3dbc\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-regex\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-regex@6.26.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-regex@6.26.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3db4\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-optimise-call-expression\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-optimise-call-expression@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-optimise-call-expression\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-optimise-call-expression\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-optimise-call-expression@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3dab\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-hoist-variables\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-hoist-variables@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-hoist-variables\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-hoist-variables\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-hoist-variables@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3da1\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-get-function-arity\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-get-function-arity@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-get-function-arity\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-get-function-arity\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-get-function-arity@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d97\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-function-name\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-function-name@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-function-name\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-function-name\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-function-name@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d8d\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-explode-assignable-expression\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-explode-assignable-expression@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-explode-assignable-expression\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-explode-assignable-expression\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-explode-assignable-expression@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d80\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-define-map\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-define-map@6.26.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-define-map\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-define-map\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-define-map@6.26.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d75\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-call-delegate\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-call-delegate@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-call-delegate\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-call-delegate\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-call-delegate@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d6f\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-helper-builder-binary-assignment-operator-visitor\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"24\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-helper-builder-binary-assignment-operator-visitor@6.24.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-helper-builder-binary-assignment-operator-visitor\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-helper-builder-binary-assignment-operator-visitor\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-helper-builder-binary-assignment-operator-visitor@6.24.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.24.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d65\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-generator\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-generator@6.26.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-generator\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-generator\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-generator@6.26.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d5b\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-core\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-core@6.26.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-core\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-core\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-core@6.26.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.3\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d58\",\n            \"packageUrlNoVersion\": \"pkg:npm/babel-code-frame\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"26\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/babel-code-frame@6.26.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"babel-code-frame\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"babel-code-frame\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/babel-code-frame@6.26.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.26.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d47\",\n            \"packageUrlNoVersion\": \"pkg:npm/aws4\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/aws4@1.8.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"aws4\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"aws4\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/aws4@1.8.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.8.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d44\",\n            \"packageUrlNoVersion\": \"pkg:npm/aws4\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/aws4@1.11.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"aws4\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"aws4\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/aws4@1.11.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.11.0\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d34\",\n            \"packageUrlNoVersion\": \"pkg:gem/autoprefixer-rails\",\n            \"versionMajor\": \"10\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/autoprefixer-rails@10.2.5.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"autoprefixer-rails\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"autoprefixer-rails\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/autoprefixer-rails@10.2.5.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"10.2.5.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d2e\",\n            \"packageUrlNoVersion\": \"pkg:npm/autoprefixer\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/autoprefixer@7.2.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"autoprefixer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"autoprefixer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/autoprefixer@7.2.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.2.6\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d23\",\n            \"packageUrlNoVersion\": \"pkg:npm/autoprefixer\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/autoprefixer@6.7.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"autoprefixer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"autoprefixer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/autoprefixer@6.7.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.7.7\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3d12\",\n            \"packageUrlNoVersion\": \"pkg:npm/async-foreach\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/async-foreach@0.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"async-foreach\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"async-foreach\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/async-foreach@0.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.3\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3cf1\",\n            \"packageUrlNoVersion\": \"pkg:npm/async\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/async@2.6.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"async\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"async\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/async@2.6.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.2\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3cd2\",\n            \"packageUrlNoVersion\": \"pkg:npm/asn1.js\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/asn1.js@4.10.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"asn1.js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"asn1.js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/asn1.js@4.10.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.10.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3cbf\",\n            \"packageUrlNoVersion\": \"pkg:npm/array-unique\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/array-unique@0.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"array-unique\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"array-unique\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/array-unique@0.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.1\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3cb7\",\n            \"packageUrlNoVersion\": \"pkg:npm/array-uniq\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/array-uniq@1.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"array-uniq\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"array-uniq\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/array-uniq@1.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.3\"\n        },\n        {\n            \"_id\": \"63627fca8dbe1c01b9ef3cac\",\n            \"packageUrlNoVersion\": \"pkg:npm/array-union\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/array-union@1.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"array-union\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"array-union\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/array-union@1.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.2\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3ca5\",\n            \"packageUrlNoVersion\": \"pkg:npm/array-includes\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/array-includes@3.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"array-includes\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"array-includes\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/array-includes@3.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.3\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3c99\",\n            \"packageUrlNoVersion\": \"pkg:npm/array-includes\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/array-includes@3.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"array-includes\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"array-includes\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/array-includes@3.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.3\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3c81\",\n            \"packageUrlNoVersion\": \"pkg:npm/array-find-index\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/array-find-index@1.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"array-find-index\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"array-find-index\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/array-find-index@1.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.2\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3c6c\",\n            \"packageUrlNoVersion\": \"pkg:npm/arr-diff\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/arr-diff@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"arr-diff\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"arr-diff\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/arr-diff@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3c4e\",\n            \"packageUrlNoVersion\": \"pkg:gem/archive-zip\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/archive-zip@0.12.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"archive-zip\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"archive-zip\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/archive-zip@0.12.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.12.0\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3c19\",\n            \"packageUrlNoVersion\": \"pkg:npm/ansi-html\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ansi-html@0.0.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.361Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ansi-html\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ansi-html\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ansi-html@0.0.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.0.7\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3bfb\",\n            \"packageUrlNoVersion\": \"pkg:npm/ajv-keywords\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ajv-keywords@3.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ajv-keywords\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ajv-keywords\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ajv-keywords@3.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.4.0\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3be0\",\n            \"packageUrlNoVersion\": \"pkg:npm/ajv\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ajv@5.5.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ajv\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ajv\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ajv@5.5.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.5.2\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3b86\",\n            \"packageUrlNoVersion\": \"pkg:npm/acorn-dynamic-import\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/acorn-dynamic-import@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"acorn-dynamic-import\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"acorn-dynamic-import\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/acorn-dynamic-import@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3b7c\",\n            \"packageUrlNoVersion\": \"pkg:npm/acorn\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/acorn@5.7.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"acorn\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"acorn\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/acorn@5.7.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.7.4\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3b72\",\n            \"packageUrlNoVersion\": \"pkg:npm/acorn\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/acorn@5.7.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"acorn\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"acorn\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/acorn@5.7.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.7.3\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3b45\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40rails/webpacker\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40rails/webpacker@3.5.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@rails/webpacker\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@rails/webpacker\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40rails/webpacker@3.5.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.5.5\"\n        },\n        {\n            \"_id\": \"63627fc98dbe1c01b9ef3b3c\",\n            \"packageUrlNoVersion\": \"pkg:npm/%40babel/runtime\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"14\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/%40babel/runtime@7.14.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:31.227Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"@babel/runtime\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"@babel/runtime\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/%40babel/runtime@7.14.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.14.8\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3a3f\",\n            \"packageUrlNoVersion\": \"pkg:npm/yallist\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/yallist@2.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"yallist\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"yallist\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/yallist@2.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3a35\",\n            \"packageUrlNoVersion\": \"pkg:npm/y18n\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/y18n@4.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"y18n\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"y18n\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/y18n@4.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3a22\",\n            \"packageUrlNoVersion\": \"pkg:gem/xpath\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/xpath@3.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"xpath\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"xpath\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/xpath@3.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.2.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3a18\",\n            \"packageUrlNoVersion\": \"pkg:npm/ws\",\n            \"versionMajor\": \"8\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ws@8.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ws\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ws\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ws@8.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"8.5.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3a0e\",\n            \"packageUrlNoVersion\": \"pkg:npm/ws\",\n            \"versionMajor\": \"8\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ws@8.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ws\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ws\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ws@8.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"8.4.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef39ed\",\n            \"packageUrlNoVersion\": \"pkg:npm/worker-farm\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/worker-farm@1.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"worker-farm\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"worker-farm\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/worker-farm@1.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.7.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef39e2\",\n            \"packageUrlNoVersion\": \"pkg:gem/websocket-extensions\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/websocket-extensions@0.1.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"websocket-extensions\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"websocket-extensions\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/websocket-extensions@0.1.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.1.5\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef39e1\",\n            \"packageUrlNoVersion\": \"pkg:gem/websocket-driver\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/websocket-driver@0.7.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.283Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"websocket-driver\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"websocket-driver\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/websocket-driver@0.7.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.5\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef39db\",\n            \"packageUrlNoVersion\": \"pkg:gem/webpacker\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/webpacker@5.4.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpacker\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpacker\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/webpacker@5.4.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.4.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef39d6\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-sources\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-sources@1.4.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-sources\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-sources\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-sources@1.4.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef39cc\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-dev-server\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-dev-server@4.8.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-dev-server\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-dev-server\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-dev-server@4.8.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.8.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef39c2\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-dev-server\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-dev-server@4.7.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-dev-server\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-dev-server\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-dev-server@4.7.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.7.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef39b8\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-dev-middleware\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-dev-middleware@5.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-dev-middleware\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-dev-middleware\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-dev-middleware@5.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.3.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef39ae\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-dev-middleware\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-dev-middleware@5.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-dev-middleware\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-dev-middleware\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-dev-middleware@5.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.3.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef39a4\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-cli\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"12\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-cli@3.3.12\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-cli\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-cli\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-cli@3.3.12\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.3.12\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef399a\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack-assets-manifest\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack-assets-manifest@3.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack-assets-manifest\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack-assets-manifest\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack-assets-manifest@3.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.1.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3990\",\n            \"packageUrlNoVersion\": \"pkg:npm/webpack\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"46\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/webpack@4.46.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"webpack\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"webpack\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/webpack@4.46.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.46.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3986\",\n            \"packageUrlNoVersion\": \"pkg:gem/web-console\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/web-console@3.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"web-console\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"web-console\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/web-console@3.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.7.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3972\",\n            \"packageUrlNoVersion\": \"pkg:npm/watchpack-chokidar2\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/watchpack-chokidar2@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"watchpack-chokidar2\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"watchpack-chokidar2\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/watchpack-chokidar2@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3968\",\n            \"packageUrlNoVersion\": \"pkg:npm/watchpack\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/watchpack@1.7.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"watchpack\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"watchpack\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/watchpack@1.7.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.7.5\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef395e\",\n            \"packageUrlNoVersion\": \"pkg:npm/vuex\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vuex@3.6.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vuex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vuex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vuex@3.6.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.6.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3954\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-visible\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-visible@1.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-visible\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-visible\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-visible@1.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef394a\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-template-es2015-compiler\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"9\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-template-es2015-compiler@1.9.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-template-es2015-compiler\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-template-es2015-compiler\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-template-es2015-compiler@1.9.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.9.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3940\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-template-compiler\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"14\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-template-compiler@2.6.14\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-template-compiler\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-template-compiler\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-template-compiler@2.6.14\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.14\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3936\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-style-loader\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-style-loader@4.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-style-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-style-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-style-loader@4.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.1.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef392c\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-router\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-router@3.5.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-router\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-router\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-router@3.5.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.5.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3922\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-mq\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-mq@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-mq\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-mq\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-mq@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3918\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-loader\",\n            \"versionMajor\": \"15\",\n            \"versionMinor\": \"9\",\n            \"versionPatch\": \"8\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-loader@15.9.8\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-loader@15.9.8\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"15.9.8\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef390e\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-hot-reload-api\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-hot-reload-api@2.3.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-hot-reload-api\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-hot-reload-api\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-hot-reload-api@2.3.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.4\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3904\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-eslint-parser\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-eslint-parser@7.11.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-eslint-parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-eslint-parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-eslint-parser@7.11.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.11.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef38fa\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue-cool-select\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue-cool-select@3.5.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue-cool-select\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue-cool-select\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue-cool-select@3.5.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.5.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef38f0\",\n            \"packageUrlNoVersion\": \"pkg:npm/vue\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"14\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vue@2.6.14\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vue\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vue\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vue@2.6.14\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.6.14\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef38e6\",\n            \"packageUrlNoVersion\": \"pkg:npm/vm-browserify\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vm-browserify@1.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vm-browserify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vm-browserify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vm-browserify@1.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef38da\",\n            \"packageUrlNoVersion\": \"pkg:npm/vendors\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/vendors@1.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"vendors\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"vendors\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/vendors@1.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.4\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef38c9\",\n            \"packageUrlNoVersion\": \"pkg:npm/v8-compile-cache\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/v8-compile-cache@2.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"v8-compile-cache\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"v8-compile-cache\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/v8-compile-cache@2.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef38a3\",\n            \"packageUrlNoVersion\": \"pkg:npm/util\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/util@0.11.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"util\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"util\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/util@0.11.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.11.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3899\",\n            \"packageUrlNoVersion\": \"pkg:npm/util\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/util@0.10.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"util\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"util\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/util@0.10.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.10.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3887\",\n            \"packageUrlNoVersion\": \"pkg:npm/url\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/url@0.11.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"url\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"url\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/url@0.11.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.11.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef384e\",\n            \"packageUrlNoVersion\": \"pkg:npm/unique-slug\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/unique-slug@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"unique-slug\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"unique-slug\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/unique-slug@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3848\",\n            \"packageUrlNoVersion\": \"pkg:npm/unique-filename\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/unique-filename@1.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"unique-filename\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"unique-filename\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/unique-filename@1.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef383e\",\n            \"packageUrlNoVersion\": \"pkg:npm/uniqs\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/uniqs@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"uniqs\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"uniqs\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/uniqs@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3834\",\n            \"packageUrlNoVersion\": \"pkg:npm/uniq\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/uniq@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"uniq\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"uniq\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/uniq@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3821\",\n            \"packageUrlNoVersion\": \"pkg:npm/unicode-property-aliases-ecmascript\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/unicode-property-aliases-ecmascript@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"unicode-property-aliases-ecmascript\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"unicode-property-aliases-ecmascript\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/unicode-property-aliases-ecmascript@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3806\",\n            \"packageUrlNoVersion\": \"pkg:npm/unbox-primitive\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/unbox-primitive@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"unbox-primitive\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"unbox-primitive\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/unbox-primitive@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef37fc\",\n            \"packageUrlNoVersion\": \"pkg:gem/uglifier\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/uglifier@4.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"uglifier\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"uglifier\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/uglifier@4.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef37f2\",\n            \"packageUrlNoVersion\": \"pkg:gem/tzinfo-data\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2022\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/tzinfo-data@1.2022.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tzinfo-data\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tzinfo-data\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/tzinfo-data@1.2022.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2022.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef37e8\",\n            \"packageUrlNoVersion\": \"pkg:gem/tzinfo\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"9\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/tzinfo@1.2.9\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tzinfo\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tzinfo\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/tzinfo@1.2.9\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.9\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef37ca\",\n            \"packageUrlNoVersion\": \"pkg:npm/type-fest\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"20\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/type-fest@0.20.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"type-fest\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"type-fest\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/type-fest@0.20.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.20.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef37bc\",\n            \"packageUrlNoVersion\": \"pkg:npm/tty-browserify\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/tty-browserify@0.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tty-browserify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tty-browserify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/tty-browserify@0.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef37b1\",\n            \"packageUrlNoVersion\": \"pkg:npm/tsconfig-paths\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/tsconfig-paths@3.12.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tsconfig-paths\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tsconfig-paths\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/tsconfig-paths@3.12.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.12.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef37ab\",\n            \"packageUrlNoVersion\": \"pkg:npm/ts-pnp\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ts-pnp@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ts-pnp\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ts-pnp\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ts-pnp@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3787\",\n            \"packageUrlNoVersion\": \"pkg:npm/to-arraybuffer\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/to-arraybuffer@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"to-arraybuffer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"to-arraybuffer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/to-arraybuffer@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef377d\",\n            \"packageUrlNoVersion\": \"pkg:npm/timsort\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/timsort@0.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"timsort\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"timsort\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/timsort@0.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3773\",\n            \"packageUrlNoVersion\": \"pkg:npm/timers-browserify\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"12\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/timers-browserify@2.0.12\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"timers-browserify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"timers-browserify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/timers-browserify@2.0.12\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.12\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3769\",\n            \"packageUrlNoVersion\": \"pkg:gem/tilt\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"10\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/tilt@2.0.10\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tilt\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tilt\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/tilt@2.0.10\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.10\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef374e\",\n            \"packageUrlNoVersion\": \"pkg:gem/thread_safe\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/thread_safe@0.3.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"thread_safe\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"thread_safe\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/thread_safe@0.3.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.3.6\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3742\",\n            \"packageUrlNoVersion\": \"pkg:gem/thor\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/thor@1.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"thor\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"thor\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/thor@1.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3731\",\n            \"packageUrlNoVersion\": \"pkg:npm/terser-webpack-plugin\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/terser-webpack-plugin@4.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"terser-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"terser-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/terser-webpack-plugin@4.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.2.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3720\",\n            \"packageUrlNoVersion\": \"pkg:npm/terser-webpack-plugin\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/terser-webpack-plugin@1.4.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"terser-webpack-plugin\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"terser-webpack-plugin\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/terser-webpack-plugin@1.4.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.5\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3719\",\n            \"packageUrlNoVersion\": \"pkg:npm/terser\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"12\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/terser@5.12.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"terser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"terser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/terser@5.12.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.12.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3713\",\n            \"packageUrlNoVersion\": \"pkg:npm/terser\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/terser@5.10.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"terser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"terser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/terser@5.10.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.10.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef370d\",\n            \"packageUrlNoVersion\": \"pkg:npm/terser\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/terser@4.8.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"terser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"terser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/terser@4.8.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.8.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3703\",\n            \"packageUrlNoVersion\": \"pkg:npm/tar\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"11\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/tar@6.1.11\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tar\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tar\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/tar@6.1.11\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.1.11\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef36f9\",\n            \"packageUrlNoVersion\": \"pkg:npm/tapable\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/tapable@1.1.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"tapable\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"tapable\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/tapable@1.1.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef36ed\",\n            \"packageUrlNoVersion\": \"pkg:npm/table\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/table@6.8.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"table\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"table\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/table@6.8.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.8.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef36be\",\n            \"packageUrlNoVersion\": \"pkg:npm/stylehacks\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/stylehacks@4.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"stylehacks\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"stylehacks\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/stylehacks@4.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef36b4\",\n            \"packageUrlNoVersion\": \"pkg:npm/style-loader\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/style-loader@1.3.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"style-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"style-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/style-loader@1.3.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3698\",\n            \"packageUrlNoVersion\": \"pkg:npm/strip-bom\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/strip-bom@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"strip-bom\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"strip-bom\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/strip-bom@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef366c\",\n            \"packageUrlNoVersion\": \"pkg:npm/string.prototype.trimstart\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/string.prototype.trimstart@1.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"string.prototype.trimstart\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"string.prototype.trimstart\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/string.prototype.trimstart@1.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.4\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3661\",\n            \"packageUrlNoVersion\": \"pkg:npm/string.prototype.trimend\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/string.prototype.trimend@1.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"string.prototype.trimend\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"string.prototype.trimend\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/string.prototype.trimend@1.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.4\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3649\",\n            \"packageUrlNoVersion\": \"pkg:npm/string-convert\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/string-convert@0.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"string-convert\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"string-convert\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/string-convert@0.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.2.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3636\",\n            \"packageUrlNoVersion\": \"pkg:npm/stream-shift\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/stream-shift@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"stream-shift\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"stream-shift\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/stream-shift@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef362c\",\n            \"packageUrlNoVersion\": \"pkg:npm/stream-http\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/stream-http@2.8.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"stream-http\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"stream-http\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/stream-http@2.8.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.8.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3622\",\n            \"packageUrlNoVersion\": \"pkg:npm/stream-each\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/stream-each@1.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"stream-each\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"stream-each\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/stream-each@1.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3618\",\n            \"packageUrlNoVersion\": \"pkg:npm/stream-browserify\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/stream-browserify@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"stream-browserify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"stream-browserify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/stream-browserify@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef35f4\",\n            \"packageUrlNoVersion\": \"pkg:npm/ssri\",\n            \"versionMajor\": \"8\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ssri@8.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ssri\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ssri\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ssri@8.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"8.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef35ea\",\n            \"packageUrlNoVersion\": \"pkg:npm/ssri\",\n            \"versionMajor\": \"6\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ssri@6.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ssri\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ssri\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ssri@6.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"6.0.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef35e0\",\n            \"packageUrlNoVersion\": \"pkg:gem/sprockets-rails\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/sprockets-rails@3.4.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sprockets-rails\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sprockets-rails\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/sprockets-rails@3.4.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.4.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef35d6\",\n            \"packageUrlNoVersion\": \"pkg:gem/sprockets\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/sprockets@3.7.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sprockets\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sprockets\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/sprockets@3.7.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.7.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef35c3\",\n            \"packageUrlNoVersion\": \"pkg:gem/spring-watcher-listen\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/spring-watcher-listen@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"spring-watcher-listen\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"spring-watcher-listen\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/spring-watcher-listen@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef35b9\",\n            \"packageUrlNoVersion\": \"pkg:gem/spring\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/spring@2.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"spring\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"spring\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/spring@2.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3596\",\n            \"packageUrlNoVersion\": \"pkg:npm/source-map-url\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/source-map-url@0.4.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"source-map-url\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"source-map-url\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/source-map-url@0.4.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.4.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3571\",\n            \"packageUrlNoVersion\": \"pkg:npm/source-map-js\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/source-map-js@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"source-map-js\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"source-map-js\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/source-map-js@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3567\",\n            \"packageUrlNoVersion\": \"pkg:npm/source-map\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/source-map@0.7.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"source-map\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"source-map\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/source-map@0.7.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3519\",\n            \"packageUrlNoVersion\": \"pkg:npm/slice-ansi\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/slice-ansi@4.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"slice-ansi\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"slice-ansi\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/slice-ansi@4.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3500\",\n            \"packageUrlNoVersion\": \"pkg:npm/signal-exit\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/signal-exit@3.0.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"signal-exit\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"signal-exit\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/signal-exit@3.0.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.6\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef34ed\",\n            \"packageUrlNoVersion\": \"pkg:gem/shellany\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/shellany@0.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"shellany\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"shellany\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/shellany@0.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef34da\",\n            \"packageUrlNoVersion\": \"pkg:npm/shebang-regex\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/shebang-regex@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"shebang-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"shebang-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/shebang-regex@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef34c7\",\n            \"packageUrlNoVersion\": \"pkg:npm/shebang-command\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/shebang-command@1.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"shebang-command\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"shebang-command\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/shebang-command@1.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.2.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef349b\",\n            \"packageUrlNoVersion\": \"pkg:npm/serve-static\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"14\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/serve-static@1.14.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"serve-static\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"serve-static\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/serve-static@1.14.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.14.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3491\",\n            \"packageUrlNoVersion\": \"pkg:npm/serialize-javascript\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/serialize-javascript@5.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"serialize-javascript\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"serialize-javascript\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/serialize-javascript@5.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3487\",\n            \"packageUrlNoVersion\": \"pkg:npm/serialize-javascript\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/serialize-javascript@4.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"serialize-javascript\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"serialize-javascript\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/serialize-javascript@4.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef347b\",\n            \"packageUrlNoVersion\": \"pkg:npm/send\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"17\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/send@0.17.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"send\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"send\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/send@0.17.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.17.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef346a\",\n            \"packageUrlNoVersion\": \"pkg:npm/semver\",\n            \"versionMajor\": \"7\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/semver@7.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"semver\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"semver\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/semver@7.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"7.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3459\",\n            \"packageUrlNoVersion\": \"pkg:gem/semantic_range\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/semantic_range@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"semantic_range\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"semantic_range\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/semantic_range@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef344f\",\n            \"packageUrlNoVersion\": \"pkg:npm/selfsigned\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/selfsigned@2.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"selfsigned\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"selfsigned\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/selfsigned@2.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3445\",\n            \"packageUrlNoVersion\": \"pkg:npm/selfsigned\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/selfsigned@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"selfsigned\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"selfsigned\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/selfsigned@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef343b\",\n            \"packageUrlNoVersion\": \"pkg:gem/selenium-webdriver\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"142\",\n            \"versionPatch\": \"7\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/selenium-webdriver@3.142.7\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"selenium-webdriver\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"selenium-webdriver\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/selenium-webdriver@3.142.7\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.142.7\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3423\",\n            \"packageUrlNoVersion\": \"pkg:npm/schema-utils\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/schema-utils@4.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"schema-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"schema-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/schema-utils@4.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3411\",\n            \"packageUrlNoVersion\": \"pkg:npm/schema-utils\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/schema-utils@2.7.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"schema-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"schema-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/schema-utils@2.7.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.7.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef340a\",\n            \"packageUrlNoVersion\": \"pkg:npm/schema-utils\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/schema-utils@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"schema-utils\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"schema-utils\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/schema-utils@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef33f9\",\n            \"packageUrlNoVersion\": \"pkg:gem/sassc-rails\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/sassc-rails@2.1.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sassc-rails\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sassc-rails\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/sassc-rails@2.1.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.1.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef33e6\",\n            \"packageUrlNoVersion\": \"pkg:gem/sassc\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/sassc@2.4.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sassc\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sassc\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/sassc@2.4.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.4.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef33dc\",\n            \"packageUrlNoVersion\": \"pkg:gem/sass-rails\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/sass-rails@5.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sass-rails\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sass-rails\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/sass-rails@5.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.1.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef33d2\",\n            \"packageUrlNoVersion\": \"pkg:npm/sass-loader\",\n            \"versionMajor\": \"10\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sass-loader@10.1.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sass-loader\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sass-loader\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sass-loader@10.1.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"10.1.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef33c8\",\n            \"packageUrlNoVersion\": \"pkg:gem/sass-listen\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/sass-listen@4.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sass-listen\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sass-listen\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/sass-listen@4.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef33be\",\n            \"packageUrlNoVersion\": \"pkg:gem/sass\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/sass@3.7.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sass\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sass\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/sass@3.7.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.7.4\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef33b4\",\n            \"packageUrlNoVersion\": \"pkg:npm/sass\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"50\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sass@1.50.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sass\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sass\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sass@1.50.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.50.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef33aa\",\n            \"packageUrlNoVersion\": \"pkg:npm/sass\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"47\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/sass@1.47.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"sass\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"sass\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/sass@1.47.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.47.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef337f\",\n            \"packageUrlNoVersion\": \"pkg:npm/run-queue\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/run-queue@1.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"run-queue\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"run-queue\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/run-queue@1.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.3\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef336c\",\n            \"packageUrlNoVersion\": \"pkg:gem/rubyzip\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rubyzip@2.3.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rubyzip\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rubyzip\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rubyzip@2.3.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.3.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3362\",\n            \"packageUrlNoVersion\": \"pkg:gem/ruby_dep\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/ruby_dep@1.5.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ruby_dep\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ruby_dep\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/ruby_dep@1.5.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.5.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3358\",\n            \"packageUrlNoVersion\": \"pkg:npm/ripemd160\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/ripemd160@2.0.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"ripemd160\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"ripemd160\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/ripemd160@2.0.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3340\",\n            \"packageUrlNoVersion\": \"pkg:npm/rgba-regex\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/rgba-regex@1.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rgba-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rgba-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/rgba-regex@1.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3337\",\n            \"packageUrlNoVersion\": \"pkg:npm/rgb-regex\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/rgb-regex@1.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rgb-regex\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rgb-regex\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/rgb-regex@1.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3311\",\n            \"packageUrlNoVersion\": \"pkg:npm/resolve-from\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/resolve-from@4.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"resolve-from\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"resolve-from\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/resolve-from@4.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3307\",\n            \"packageUrlNoVersion\": \"pkg:npm/resolve-from\",\n            \"versionMajor\": \"3\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/resolve-from@3.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"resolve-from\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"resolve-from\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/resolve-from@3.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"3.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef32f4\",\n            \"packageUrlNoVersion\": \"pkg:npm/resolve-cwd\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/resolve-cwd@2.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"resolve-cwd\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"resolve-cwd\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/resolve-cwd@2.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef32ea\",\n            \"packageUrlNoVersion\": \"pkg:npm/resolve\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"22\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/resolve@1.22.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"resolve\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"resolve\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/resolve@1.22.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.22.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef32e0\",\n            \"packageUrlNoVersion\": \"pkg:npm/resolve\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"21\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/resolve@1.21.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"resolve\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"resolve\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/resolve@1.21.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.21.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef32b3\",\n            \"packageUrlNoVersion\": \"pkg:npm/repeat-element\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/repeat-element@1.1.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"repeat-element\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"repeat-element\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/repeat-element@1.1.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.4\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef32a0\",\n            \"packageUrlNoVersion\": \"pkg:npm/regjsparser\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regjsparser@0.8.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regjsparser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regjsparser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regjsparser@0.8.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.8.4\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3296\",\n            \"packageUrlNoVersion\": \"pkg:npm/regjsparser\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regjsparser@0.7.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regjsparser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regjsparser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regjsparser@0.7.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef328c\",\n            \"packageUrlNoVersion\": \"pkg:npm/regjsgen\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regjsgen@0.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regjsgen\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regjsgen\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regjsgen@0.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.6.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3282\",\n            \"packageUrlNoVersion\": \"pkg:npm/regjsgen\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"5\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regjsgen@0.5.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regjsgen\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regjsgen\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regjsgen@0.5.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.5.2\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3278\",\n            \"packageUrlNoVersion\": \"pkg:npm/regexpu-core\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regexpu-core@5.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regexpu-core\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regexpu-core\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regexpu-core@5.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.0.1\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3269\",\n            \"packageUrlNoVersion\": \"pkg:npm/regexpu-core\",\n            \"versionMajor\": \"4\",\n            \"versionMinor\": \"8\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regexpu-core@4.8.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regexpu-core\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regexpu-core\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regexpu-core@4.8.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"4.8.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef325d\",\n            \"packageUrlNoVersion\": \"pkg:gem/regexp_parser\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/regexp_parser@2.2.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regexp_parser\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regexp_parser\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/regexp_parser@2.2.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.0\"\n        },\n        {\n            \"_id\": \"63627fc28dbe1c01b9ef3253\",\n            \"packageUrlNoVersion\": \"pkg:npm/regexp.prototype.flags\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"3\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regexp.prototype.flags@1.3.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regexp.prototype.flags\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regexp.prototype.flags\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regexp.prototype.flags@1.3.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.3.1\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef322c\",\n            \"packageUrlNoVersion\": \"pkg:npm/regenerator-transform\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"14\",\n            \"versionPatch\": \"5\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regenerator-transform@0.14.5\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regenerator-transform\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regenerator-transform\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regenerator-transform@0.14.5\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.14.5\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef321c\",\n            \"packageUrlNoVersion\": \"pkg:npm/regenerate-unicode-properties\",\n            \"versionMajor\": \"9\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regenerate-unicode-properties@9.0.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regenerate-unicode-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regenerate-unicode-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regenerate-unicode-properties@9.0.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"9.0.0\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef3212\",\n            \"packageUrlNoVersion\": \"pkg:npm/regenerate-unicode-properties\",\n            \"versionMajor\": \"10\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/regenerate-unicode-properties@10.0.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"regenerate-unicode-properties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"regenerate-unicode-properties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/regenerate-unicode-properties@10.0.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"10.0.1\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef31fb\",\n            \"packageUrlNoVersion\": \"pkg:npm/readdirp\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/readdirp@2.2.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"readdirp\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"readdirp\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/readdirp@2.2.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.1\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef31d7\",\n            \"packageUrlNoVersion\": \"pkg:gem/rb-inotify\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"10\",\n            \"versionPatch\": \"1\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rb-inotify@0.10.1\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rb-inotify\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rb-inotify\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rb-inotify@0.10.1\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.10.1\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef31cf\",\n            \"packageUrlNoVersion\": \"pkg:gem/rb-fsevent\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"11\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rb-fsevent@0.11.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rb-fsevent\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rb-fsevent\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rb-fsevent@0.11.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.11.0\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef31c5\",\n            \"packageUrlNoVersion\": \"pkg:npm/raw-body\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/raw-body@2.4.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"raw-body\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"raw-body\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/raw-body@2.4.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.4.3\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef31bb\",\n            \"packageUrlNoVersion\": \"pkg:npm/raw-body\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/raw-body@2.4.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"raw-body\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"raw-body\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/raw-body@2.4.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.4.2\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef31a8\",\n            \"packageUrlNoVersion\": \"pkg:npm/randomfill\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"4\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:npm/randomfill@1.0.4\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"npm\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"randomfill\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"randomfill\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:npm/randomfill@1.0.4\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.0.4\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef3195\",\n            \"packageUrlNoVersion\": \"pkg:gem/rake\",\n            \"versionMajor\": \"13\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rake@13.0.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rake\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rake\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rake@13.0.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"13.0.6\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef318b\",\n            \"packageUrlNoVersion\": \"pkg:gem/railties\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/railties@5.2.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"railties\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"railties\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/railties@5.2.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.6\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef3181\",\n            \"packageUrlNoVersion\": \"pkg:gem/rails-html-sanitizer\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"4\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rails-html-sanitizer@1.4.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rails-html-sanitizer\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rails-html-sanitizer\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rails-html-sanitizer@1.4.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.4.2\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef3177\",\n            \"packageUrlNoVersion\": \"pkg:gem/rails-dom-testing\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"0\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rails-dom-testing@2.0.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rails-dom-testing\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rails-dom-testing\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rails-dom-testing@2.0.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.0.3\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef316d\",\n            \"packageUrlNoVersion\": \"pkg:gem/rails\",\n            \"versionMajor\": \"5\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"6\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rails@5.2.6\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:31.227Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rails\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rails\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rails@5.2.6\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"5.2.6\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef3163\",\n            \"packageUrlNoVersion\": \"pkg:gem/rack-test\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"1\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rack-test@1.1.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rack-test\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rack-test\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rack-test@1.1.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.1.0\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef3159\",\n            \"packageUrlNoVersion\": \"pkg:gem/rack-proxy\",\n            \"versionMajor\": \"0\",\n            \"versionMinor\": \"7\",\n            \"versionPatch\": \"2\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rack-proxy@0.7.2\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rack-proxy\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rack-proxy\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rack-proxy@0.7.2\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"0.7.2\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef314f\",\n            \"packageUrlNoVersion\": \"pkg:gem/rack\",\n            \"versionMajor\": \"2\",\n            \"versionMinor\": \"2\",\n            \"versionPatch\": \"3\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/rack@2.2.3\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:37.418Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"rack\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"rack\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/rack@2.2.3\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"2.2.3\"\n        },\n        {\n            \"_id\": \"63627fc18dbe1c01b9ef3145\",\n            \"packageUrlNoVersion\": \"pkg:gem/racc\",\n            \"versionMajor\": \"1\",\n            \"versionMinor\": \"6\",\n            \"versionPatch\": \"0\",\n            \"author\": null,\n            \"bomFormat\": \"CycloneDX\",\n            \"bomFormatVersion\": \"1.4\",\n            \"coordinates\": \"pkg:gem/racc@1.6.0\",\n            \"copyright\": null,\n            \"dateCreated\": \"2022-11-02T14:33:22.370Z\",\n            \"dateModified\": \"2022-11-02T14:33:22.370Z\",\n            \"dependencyTree\": null,\n            \"derivedEcosystem\": \"gem\",\n            \"description\": null,\n            \"fullyQualifiedName\": \"racc\",\n            \"hashes\": [],\n            \"licenses\": [],\n            \"mimeType\": null,\n            \"name\": \"racc\",\n            \"packageGroup\": null,\n            \"packageUrl\": \"pkg:gem/racc@1.6.0\",\n            \"publisher\": null,\n            \"references\": [],\n            \"scope\": null,\n            \"supplier\": null,\n            \"type\": \"library\",\n            \"version\": \"1.6.0\"\n        }\n    ]\n}"}],"_postman_id":"87bb5a5e-5196-4f87-91e6-c01fe40953f5"}],"id":"a714ebdb-6d8e-477a-9050-f5b97cc8ce4d","_postman_id":"a714ebdb-6d8e-477a-9050-f5b97cc8ce4d","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Custom Vulnerabilities","item":[{"name":"Create Custom Vulnerability","event":[{"listen":"test","script":{"id":"5625d1c2-7890-49d4-8cea-318a6692c2f4","exec":["var template = `","<style type=\"text/css\">","    .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}","    .tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}","    .tftable tr {background-color:#ffffff;}","    .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}","    .tftable tr:hover {background-color:#e0ffff;}","</style>","","<table class=\"tftable\" border=\"1\">","    <tr>","        <th>Success</th>","        <th>Errors</th>","    </tr>","    <tr>","        <td>{{response.success}}</td>","        <td>{{response.errors}}</td>","    </tr>","</table>","`;","","function constructVisualizerPayload() {","    return {response: pm.response.json()}","}","","pm.visualizer.set(template, constructVisualizerPayload());"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"022c5906-903b-4d11-a339-dadeb2a20bf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"vulnId\": \"DEMO-041170\",\n    \"description\": \"The products listed below contain an authentication bypass vulnerability that could allow an attacker to gain access to the data managed by the server.\",\n    \"cvssScore\": 9.5,\n    \"impactedCpes\": [\n        {\n            \"uri\": \"cpe:2.3:a:vendora:productEX1:*:*:*:*:*:*:*:*\",\n            \"versionStartIncluding\": \"1.0.0\",\n            \"versionEndExcluding\": \"2.0.0\"\n        },\n        {\n            \"uri\": \"cpe:2.3:a:vendorb:productEX2:*:*:*:*:*:*:*:*\",\n            \"versionStartIncluding\": \"5.0.0\",\n            \"versionEndExcluding\": \"17.0.0\"\n        }\n    ],\n    \"fixes\": [\n        \"To mitigate this vulnerability, upgrade the productEX2 library to the 17.0 release.\"\n    ],\n    \"published\": \"2025-03-19\",\n    \"status\": \"PUBLISHED\",\n    \"source\": \"Vuln Source Name\",\n    \"sourceLink\": \"https://vulnsource.com/vulnid/\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/vulnerabilities/custom","description":"<h3 id=\"create-custom-vulnerability\">Create Custom Vulnerability</h3>\n<p>This endpoint allows you to create a custom vulnerability.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:custom-vulnerability</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>vulnId</code> (string - required, alphanumeric, max 20 characters ) - The ID of the vulnerability.</p>\n</li>\n<li><p><code>description</code> (string - required, max 500 characters) - Description of the vulnerability.</p>\n</li>\n<li><p><code>cvssScore</code> (number - required, 0-10) - CVSS score of the vulnerability.</p>\n</li>\n<li><p><code>impactedCpes</code> (array, required, max 100 items) - Array of impacted CPEs with URI, version start including, and version end excluding.</p>\n<ul>\n<li><p><code>uri</code> (string) - URI of the impacted CPE.</p>\n</li>\n<li><p><code>versionStartIncluding</code> (string) - Version start including of the impacted CPE.</p>\n</li>\n<li><p><code>versionEndExcluding</code> (string) - Version end excluding of the impacted CPE.</p>\n</li>\n</ul>\n</li>\n<li><p><code>fixes</code> (array - max 100 items) - Array of fixes to mitigate the vulnerability.</p>\n</li>\n<li><p><code>published</code> (string - required, YYYY-MM-DD ) - Date of publication of the vulnerability.</p>\n</li>\n<li><p><code>status</code> (string - required, PUBLISHED | REJECTED) - Status of the vulnerability.</p>\n</li>\n<li><p><code>source</code> (string - required) - Source of the vulnerability.</p>\n</li>\n<li><p><code>sourceLink</code> (string, optional, valid URL) - Link to the source of the vulnerability.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is in JSON format and includes the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"data\": {\n        \"message\": \"custom vulnerability created successfully.\"\n    }\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerabilities","custom"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"022c5906-903b-4d11-a339-dadeb2a20bf6"},{"name":"Update Custom Vulnerability","id":"6e4717c2-941b-4a1b-afe4-48e3a5f564bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"status\": \"REJECTED\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/vulnerabilities/custom/MFST-000000","description":"<p>This endpoint allows the user to update the status of a custom vulnerability with the provided vulnerability ID.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:custom-vulnerability</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><p>The request should include a JSON payload with the \"status\" key to update the status of the vulnerability.</p>\n</li>\n<li><p><code>status</code> (string - required, PUBLISHED | REJECTED) - Status of the vulnerability.</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response of this request is a JSON object with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"data\": {\n        \"message\": \"custom vulnerability updated successfully.\"\n    }\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerabilities","custom","MFST-000000"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e4717c2-941b-4a1b-afe4-48e3a5f564bf"},{"name":"Fetch Custom Vulnerabilities","id":"a63f692e-6fb0-4499-b892-96c7136ad867","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerabilities/custom?sources=CUSTOM,OTHERS","description":"<h2 id=\"get-custom-vulnerabilities\">Get Custom Vulnerabilities</h2>\n<p>This endpoint retrieves custom vulnerabilities from the specified sources.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:custom-vulnerability</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><code>sources</code> (query parameter, required): Specifies the sources from which to retrieve vulnerabilities. The value should be a comma-separated list of sources, e.g. <code>CUSTOM,OTHERS</code>.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"data\": [\n        {\n            \"_id\": \"67d45e21c449f99531bd843b\",\n            \"sourceIdentifier\": \"a37edd224da0576979dffb64731e4bda53d8f99f5f144505e083c25a62bbe944\",\n            \"cveId\": \"MFST-00000\",\n            \"cvssData\": [\n                {\n                    \"version\": \"4.0\",\n                    \"vector\": \"\",\n                    \"score\": 3,\n                    \"severity\": \"LOW\",\n                    \"source\": \"MANIFEST\",\n                    \"_id\": \"67d45e2187f973b8fe0f6e06\"\n                }\n            ],\n            \"description\": \"This is a description for MFST-1370-7211\",\n            \"epssPercentile\": 0,\n            \"mitigationNotes\": [\n                \"Now you know how to fix this mess because you're using Manifest. :)\"\n            ],\n            \"preferredScore\": 3,\n            \"preferredSeverity\": \"LOW\",\n            \"priorityScore\": 213001,\n            \"publishDate\": \"2025-03-14T00:00:00.000Z\",\n            \"recommendedAction\": \"accept\",\n            \"references\": [\n                {\n                    \"type\": \"SOURCE\",\n                    \"url\": \"https://app.development.manifestcyber.dev/vulnerability/MFST-1370-7211\",\n                    \"_id\": \"67d45e2187f973b8fe0f6e07\"\n                }\n            ],\n            \"sources\": [\n                \"MANIFEST\"\n            ],\n            \"status\": \"PUBLISHED\"\n        }\n     ]\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerabilities","custom"],"host":["{{apiUrl}}"],"query":[{"key":"sources","value":"CUSTOM,OTHERS"}],"variable":[]}},"response":[],"_postman_id":"a63f692e-6fb0-4499-b892-96c7136ad867"}],"id":"c4d026a9-b099-40cd-bcdf-a74695265934","description":"<p>Custom Vulnerabilities are not enabled for organizations by default.<br />Please reach out to our team for questions.</p>\n","_postman_id":"c4d026a9-b099-40cd-bcdf-a74695265934","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Label","item":[{"name":"Fetch a label","id":"b99fe59d-97a1-46f3-8bec-4c52d2e8ce4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/label/647394266f0b6cbc0cb14ebf","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:label</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["label","647394266f0b6cbc0cb14ebf"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b99fe59d-97a1-46f3-8bec-4c52d2e8ce4b"},{"name":"Create new label","id":"06a753c3-2a57-4072-889b-f1e763f2d3f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"test label\",\n    \"color\": \"color\",\n    \"type\": \"asset\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/label","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:label</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["label"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"06a753c3-2a57-4072-889b-f1e763f2d3f7"},{"name":"Update a label","id":"82ed1837-3719-439e-8ebc-82f9f43f77e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Label A\",\n    \"color\": \"color2\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/label/6490b0c0430d87224021d26c","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:label</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["label","6490b0c0430d87224021d26c"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"82ed1837-3719-439e-8ebc-82f9f43f77e6"},{"name":"Increment a label's includedInCount","id":"de8b8a5b-a39f-4619-a5e8-6ae1e47e6d8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n   \n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/label/6490b0c0430d87224021d26c/includedInCount/increment","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:label</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["label","6490b0c0430d87224021d26c","includedInCount","increment"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de8b8a5b-a39f-4619-a5e8-6ae1e47e6d8d"},{"name":"Decrement a label's includedInCount","id":"5f4ce8ac-37d2-44ad-bff9-31b5079bef27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n   \n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/label/6490b0c0430d87224021d26c/includedInCount/decrement","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:label</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["label","6490b0c0430d87224021d26c","includedInCount","decrement"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f4ce8ac-37d2-44ad-bff9-31b5079bef27"},{"name":"Delete a label","id":"1882fb26-a7ac-420a-b05f-9ced72ec965e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiUrl}}/label/6490ac756f09432f219b8592","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>delete:label</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["label","6490ac756f09432f219b8592"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1882fb26-a7ac-420a-b05f-9ced72ec965e"}],"id":"ea1b91df-3e7f-4308-a833-dda117121247","_postman_id":"ea1b91df-3e7f-4308-a833-dda117121247","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Labels","item":[{"name":"Fetch all labels","id":"cc7bbe6f-6efc-463c-a5d3-ea1bb14bb630","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/labels","description":"<p>Fetch a list of all labels (paginated) for an organization. Results may be further refined through optional <code>filters</code> parameter(s).</p>\n<p>Filters available on this route:</p>\n<ul>\n<li><code>assetActive</code>: Array[boolean]. Only include labels attached to assets with an <code>isActive</code> value matching one of the values in the array (OR, not AND).</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:label</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["labels"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Filter results based on one or more (applied additively) preset filters. This should be an array of objects with keys <code>field</code> and <code>value</code>.</p>\n","type":"text/plain"},"key":"filters","value":"[{ \"field\": \"assetActive\", \"value\": [true] }]"}],"variable":[]}},"response":[],"_postman_id":"cc7bbe6f-6efc-463c-a5d3-ea1bb14bb630"}],"id":"a3118ac0-e14d-4581-bac3-b37fa030cc61","_postman_id":"a3118ac0-e14d-4581-bac3-b37fa030cc61","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"License","item":[{"name":"Fetch all licenses","id":"1e2e45b8-efe2-463d-a1a6-1d5f91ff5941","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/licenses","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:license</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["licenses"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e2e45b8-efe2-463d-a1a6-1d5f91ff5941"},{"name":"Fetch a license","id":"b5b7bfbf-1dfa-40cf-9faa-e3afb2c3f46e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/license/6462d330094ebcb87dc05a8e","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:license</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["license","6462d330094ebcb87dc05a8e"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b5b7bfbf-1dfa-40cf-9faa-e3afb2c3f46e"},{"name":"Fetch all license issues for an asset","id":"71d2a2ef-9ee1-4d39-8eb2-1247a6e6c606","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/license-issues/asset/:assetId","description":"<p>Fetches a list of all problematic licenses for a given asset (by asset ID).</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:asset</code> , <code>read:license</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["license-issues","asset",":assetId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>id of the asset to fetch license issues for</p>\n","type":"text/plain"},"type":"any","value":"","key":"assetId"}]}},"response":[{"id":"cb010894-52da-4ea2-b0f0-fca6bcf5b07b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/license-issues/asset/:assetId","host":["{{apiUrl}}"],"path":["license-issues","asset",":assetId"],"variable":[{"key":"assetId","value":"67cecd7a3c1dea226c9e864b","description":"id of the asset to fetch license issues for"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Mar 2025 22:44:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.4"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"ETag","value":"W/\"1d0-cSdvXGq7tAl0Fs1T49h2vb7iXQM\""},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"licenseIssues\": [\n            {\n                \"affectedComponents\": [\n                    {\n                        \"name\": \"mdn-data\",\n                        \"version\": \"2.0.14\",\n                        \"packageUrlNoVersion\": \"pkg:npm/mdn-data\",\n                        \"organizationComponentId\": \"6591f1a2c12173dc1d409939\"\n                    },\n                    {\n                        \"name\": \"axe-core\",\n                        \"version\": \"4.4.3\",\n                        \"packageUrlNoVersion\": \"pkg:npm/axe-core\",\n                        \"organizationComponentId\": \"6591f1b1c12173dc1d40e77e\"\n                    }\n                ],\n                \"fullName\": \"Mozilla Public License 2.0\",\n                \"shortName\": \"MPL-2.0\",\n                \"licenseType\": \"Copyleft\",\n                \"id\": \"6674c0d87aa4245b3eb45ebf\"\n            }\n        ]\n    },\n    \"errors\": []\n}"}],"_postman_id":"71d2a2ef-9ee1-4d39-8eb2-1247a6e6c606"},{"name":"Update a license","id":"7072ff02-2a7e-4f0a-8bea-90cfbde51065","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"fullName\": \"testing\",\n    \"shortName\": \"tsting\",\n    \"type\": \"type\",\n    \"description\": \"description 2\",\n    \"riskLevel\": \"risky\",\n    \"asdf\": \"asdf\",\n    \"licenseUrl\": \"https://app.manifestcyber.com\",\n    \"aliases\": [\"name 1\", \"name 2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/license/6477c8261745d1c1b4598ae5","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> update<code>:license</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["license","6477c8261745d1c1b4598ae5"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7072ff02-2a7e-4f0a-8bea-90cfbde51065"}],"id":"25362a1b-ab74-42fa-98c4-ff5d3f7dbddd","_postman_id":"25362a1b-ab74-42fa-98c4-ff5d3f7dbddd","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Organization","item":[{"name":"Fetch organization","id":"7c81357f-6557-44ea-a63f-51ec0f91c173","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true}},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/organization/:targetOrganizationId","description":"<p>Retrieves organization details for organization users and tokens</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> none</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><p><strong>Response Schema</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n  \"title\": \"Organization API Response\",\n  \"type\": \"object\",\n  \"required\": [\"success\"],\n  \"properties\": {\n    \"success\": {\n      \"type\": \"boolean\",\n      \"const\": true,\n      \"description\": \"Indicates the API request was successful\"\n    },\n    \"data\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"required\": [\n          \"_id\",\n          \"domains\",\n          \"name\",\n          \"status\",\n          \"isPaid\",\n          \"children\",\n          \"dateModified\",\n          \"enableInviteOnly\",\n          \"enableLockSignupToDomains\",\n          \"enabledFeatures\",\n          \"SSOProviders\",\n          \"countMembers\",\n          \"members\",\n          \"people\",\n          \"defaultRole\",\n          \"subOrganizationsCount\"\n        ],\n        \"properties\": {\n          \"_id\": {\n            \"type\": \"string\",\n            \"description\": \"Unique identifier for the organization\",\n            \"example\": \"507f1f77bcf86cd799439011\"\n          },\n          \"domains\": {\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"string\"\n            },\n            \"description\": \"List of domains associated with the organization\",\n            \"example\": [\"example.com\", \"subdomain.example.com\"]\n          },\n          \"name\": {\n            \"type\": \"string\",\n            \"description\": \"Organization name\",\n            \"example\": \"Acme Corporation\"\n          },\n          \"status\": {\n            \"type\": \"string\",\n            \"enum\": [\"active\", \"deleted-user\", \"deleted-staff\"],\n            \"description\": \"Current status of the organization\",\n            \"example\": \"active\"\n          },\n          \"isPaid\": {\n            \"type\": \"boolean\",\n            \"description\": \"Whether the organization has a paid subscription\",\n            \"example\": true\n          },\n          \"children\": {\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"string\"\n            },\n            \"description\": \"Array of child organization IDs\",\n            \"example\": [\"507f1f77bcf86cd799439012\", \"507f1f77bcf86cd799439013\"]\n          },\n          \"dateModified\": {\n            \"type\": \"string\",\n            \"format\": \"date-time\",\n            \"description\": \"Last modification date\",\n            \"example\": \"2024-01-15T10:30:00Z\"\n          },\n          \"enableInviteOnly\": {\n            \"type\": \"boolean\",\n            \"description\": \"Whether organization requires invites to join\",\n            \"example\": false\n          },\n          \"enableLockSignupToDomains\": {\n            \"type\": \"boolean\",\n            \"description\": \"Whether signup is restricted to organization domains\",\n            \"example\": true\n          },\n          \"enabledFeatures\": {\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"string\"\n            },\n            \"description\": \"DEPRECATED: Use feature flags API instead. List of enabled features\",\n            \"example\": [\"feature1\", \"feature2\"]\n          },\n          \"SSOProviders\": {\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"object\",\n              \"properties\": {\n                \"providerId\": {\n                  \"type\": \"string\",\n                  \"description\": \"Unique identifier for the SSO provider\"\n                },\n                \"provider\": {\n                  \"type\": \"string\",\n                  \"description\": \"Type of SSO provider (e.g., 'saml', 'oidc')\"\n                },\n                \"name\": {\n                  \"type\": \"string\",\n                  \"description\": \"Display name for the SSO provider\"\n                }\n              }\n            },\n            \"description\": \"List of SSO providers configured\",\n            \"example\": []\n          },\n          \"defaultSettings\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"assetIsActive\": {\n                \"type\": \"boolean\",\n                \"description\": \"Default asset active status\",\n                \"example\": true\n              },\n              \"productIsActive\": {\n                \"type\": \"boolean\",\n                \"description\": \"Default product active status\",\n                \"example\": true\n              },\n              \"enabledSbomEnrichmentSource\": {\n                \"type\": \"string\",\n                \"enum\": [\"PARLAY\", \"PARLAY_ADDITIVE\"],\n                \"description\": \"Default SBOM enrichment source\",\n                \"example\": \"PARLAY\"\n              },\n              \"_id\": {\n                \"type\": \"string\",\n                \"description\": \"Settings ID\",\n                \"example\": \"507f1f77bcf86cd799439014\"\n              }\n            },\n            \"description\": \"Default organization settings\"\n          },\n          \"countMembers\": {\n            \"type\": \"object\",\n            \"required\": [\"isActive\", \"total\"],\n            \"properties\": {\n              \"isActive\": {\n                \"type\": \"integer\",\n                \"description\": \"Number of active members. Currently has always the same as countMembers.total\",\n                \"example\": 25\n              },\n              \"total\": {\n                \"type\": \"integer\",\n                \"description\": \"Total number of members\",\n                \"example\": 30\n              }\n            },\n            \"description\": \"Member count statistics\"\n          },\n          \"members\": {\n            \"type\": \"integer\",\n            \"description\": \"Total number of members\",\n            \"example\": 30\n          },\n          \"people\": {\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"object\",\n              \"required\": [\n                \"_id\",\n                \"organizationId\",\n                \"userId\",\n                \"dateCreated\",\n                \"dateModified\",\n                \"groupId\"\n              ],\n              \"properties\": {\n                \"_id\": {\n                  \"type\": \"string\",\n                  \"example\": \"507f1f77bcf86cd799439015\"\n                },\n                \"organizationId\": {\n                  \"type\": \"string\",\n                  \"example\": \"507f1f77bcf86cd799439011\"\n                },\n                \"userId\": {\n                  \"type\": \"string\",\n                  \"example\": \"507f1f77bcf86cd799439016\"\n                },\n                \"dateCreated\": {\n                  \"type\": \"string\",\n                  \"format\": \"date-time\",\n                  \"example\": \"2024-01-10T08:00:00Z\"\n                },\n                \"dateModified\": {\n                  \"type\": \"string\",\n                  \"format\": \"date-time\",\n                  \"example\": \"2024-01-15T10:30:00Z\"\n                },\n                \"firstName\": {\n                  \"type\": \"string\",\n                  \"example\": \"John\"\n                },\n                \"groupId\": {\n                  \"type\": \"array\",\n                  \"items\": {},\n                  \"example\": []\n                },\n                \"isOrganizationAdmin\": {\n                  \"type\": \"boolean\",\n                  \"example\": false\n                },\n                \"lastName\": {\n                  \"type\": \"string\",\n                  \"example\": \"Doe\"\n                },\n                \"title\": {\n                  \"type\": \"string\",\n                  \"example\": \"Software Engineer\"\n                },\n                \"isReadOnly\": {\n                  \"type\": \"boolean\",\n                  \"example\": false\n                }\n              }\n            },\n            \"description\": \"Array of organization members\"\n          },\n          \"parent\": {\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"string\"\n            },\n            \"description\": \"Array of parent organization IDs\",\n            \"example\": [\"507f1f77bcf86cd799439017\"]\n          },\n          \"organizationStats\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"countTotalActiveAssets\": {\n                \"type\": \"integer\",\n                \"description\": \"Number of total active assets in this Organization\",\n                \"example\": 150\n              },\n              \"countTotalActiveAssetComponents\": {\n                \"type\": \"integer\",\n                \"description\": \"Number of total components for all active assets in this Organization\",\n                \"example\": 2500\n              },\n              \"countTotalSboms\": {\n                \"type\": \"integer\",\n                \"description\": \"Number of total sboms that have been uploaded, processed and have not been deleted\",\n                \"example\": 45\n              },\n              \"countUniqueAssetVulnerabilities\": {\n                \"type\": \"integer\",\n                \"description\": \"Number of unique vulnerabilities for all active assets in this Organization\",\n                \"example\": 125\n              }\n            },\n            \"required\": [\n              \"countTotalActiveAssets\",\n              \"countTotalActiveAssetComponents\",\n              \"countTotalSboms\",\n              \"countUniqueAssetVulnerabilities\"\n            ],\n            \"description\": \"Organization statistics\"\n          },\n          \"defaultRole\": {\n            \"type\": \"object\",\n            \"description\": \"Default role object\",\n            \"example\": {\n              \"_id\": \"507f1f77bcf86cd799439018\",\n              \"name\": \"member\",\n              \"permissions\": []\n            }\n          },\n          \"subOrganizationsCount\": {\n            \"type\": \"integer\",\n            \"description\": \"Number of sub-organizations\",\n            \"example\": 3\n          },\n          \"subscriptions\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"aibom\": {\n                \"type\": \"boolean\",\n                \"description\": \"True, if the organization is subscribed to aibom capabilities\",\n                \"example\": true\n              },\n              \"sbom\": {\n                \"type\": \"boolean\",\n                \"description\": \"True, if the organization is subscribed to sbom capabilities\",\n                \"example\": true\n              }\n            },\n            \"required\": [\"aibom\", \"sbom\"],\n            \"description\": \"Organization subscription capabilities\"\n          }\n        }\n      },\n      \"minItems\": 1,\n      \"maxItems\": 1,\n      \"description\": \"Array containing a single organization object\"\n    },\n    \"errors\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"string\"\n      },\n      \"description\": \"Array of error messages, if any. Present if success is false\",\n      \"example\": null\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["organization",":targetOrganizationId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(optional)</p>\n<p>If using an API token: this param is not needed, its value is ignored if provided because API tokens always act on behalf of the organization they were created on.</p>\n<p>If using a user session: the organization id to act on behalf of. If not provided, first organization found for the user will be returned.</p>\n","type":"text/plain"},"type":"any","value":"6359f39ee9d7b7033b55bc23","key":"targetOrganizationId"}]}},"response":[{"id":"779d81af-b47b-4c07-92ef-ee52375692e5","name":"200 - (Success) Fetch Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <api-token-value>","type":"text"}],"url":"{{apiUrl}}/organization"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Feb 2023 15:22:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"350"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"15e-b3t8XuDFxaAVQzkU5Ykv54OxbIs\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"_id\": \"507f1f77bcf86cd799439011\",\n\"status\": \"active\",\n            \"domains\": [],\n            \"name\": \"Sample Organization\",\n            \"enableInviteOnly\": false,\n            \"enableLockSignupToDomains\": false,\n            \"enableSignupWhitelist\": false,\n            \"enableSignupBlacklist\": false,\n            \"enableIpWhitelist\": false,\n            \"mfaMethod\": [],\n            \"maxSessionLength\": \"7d\",\n            \"memberApprovalThreshold\": 1,\n            \"children\": [\n                \"507f1f77bcf86cd799439012\"\n            ],\n            \"subOrganizationsCount\": 1,\n            \"parent\": [],\n            \"countGroups\": 0,\n            \"countMembers\": {\n                \"isActive\": 2,\n                \"total\": 2\n            },\n            \"defaultPermissions\": null,\n            \"importedAsInitialSeed\": null,\n            \"isPaid\": true,\n            \"enabledFeatures\": [\n                \"accepted-vuln-triage\",\n                \"modified-sbom\",\n                \"import-gh-labels\"\n            ],\n            \"SSOProviders\": [],\n            \"dateCreated\": \"2024-01-01T12:00:00.000Z\",\n            \"dateModified\": \"2024-12-31T23:59:59.999Z\",\n            \"organizationStats\": {\n                \"countTotalActiveAssets\": 5,\n                \"countTotalActiveAssetComponents\": 12847,\n                \"countTotalSboms\": 5,\n                \"countUniqueAssetVulnerabilities\": 815,\n                \"_id\": \"507f1f77bcf86cd799439013\"\n            },\n            \"members\": 2,\n            \"people\": [\n                {\n                    \"_id\": \"507f1f77bcf86cd799439014\",\n                    \"organizationId\": \"507f1f77bcf86cd799439011\",\n                    \"userId\": \"507f1f77bcf86cd799439015\",\n                    \"dateCreated\": \"2024-01-01T12:00:00.000Z\",\n                    \"dateModified\": \"2024-12-31T23:59:59.999Z\",\n                    \"firstName\": \"John\",\n                    \"groupId\": [],\n                    \"lastName\": \"Doe\",\n                    \"title\": \"Administrator\"\n                },\n                {\n                    \"_id\": \"507f1f77bcf86cd799439016\",\n                    \"userId\": \"507f1f77bcf86cd799439017\",\n                    \"organizationId\": \"507f1f77bcf86cd799439011\",\n                    \"groupId\": [],\n                    \"firstName\": \"Jane\",\n                    \"lastName\": \"Smith\",\n                    \"title\": \"Analyst\",\n                    \"dateCreated\": \"2024-01-02T12:00:00.000Z\",\n                    \"dateModified\": \"2024-01-02T12:00:00.000Z\"\n                }\n            ],\n            \"defaultRole\": {\n                \"organizationId\": \"507f1f77bcf86cd799439011\",\n                \"name\": \"Member\",\n                \"urn\": \"member\",\n                \"permissions\": [\n                    \"manage-assets\"\n                ],\n                \"isPredefined\": true,\n                \"isDefault\": true,\n                \"color\": \"rgba(78, 185, 105, 1)\"\n            },\n            \"subscriptions\": {\n                \"sbom\": true,\n                \"aibom\": false\n            }\n        }\n    ]\n}"},{"id":"6497cc7d-2e75-4bce-b860-4be7443a386f","name":"200 - (Error) Fetch Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <api-token-value>","type":"text"}],"url":"{{apiUrl}}/organization"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jul 2025 15:16:37 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"43"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"2b-RoQayO0+VqSno+r/36Yeyobd+1I\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"errors\": [\n        \"Error fetching organization\"\n    ]\n}"},{"id":"10ea5754-5189-4977-8327-4c3010ce6cd3","name":"401 Fetch Organization","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/organization/:targetOrganizationId","host":["{{apiUrl}}"],"path":["organization",":targetOrganizationId"],"variable":[{"key":"targetOrganizationId","value":"6359f39ee9d7b7033b55bc23","description":"(optional)\n\n\n\nIf using an API token: this param is not needed, its value is ignored if provided because API tokens always act on behalf of the organization they were created on.\n\n\n\n\nIf using a user session: the organization id to act on behalf of. If not provided, first organization found for the user will be returned."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jul 2025 15:16:37 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"43"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"2b-RoQayO0+VqSno+r/36Yeyobd+1I\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"errors\": [\n        \"Unauthorized\"\n    ]\n}"}],"_postman_id":"7c81357f-6557-44ea-a63f-51ec0f91c173"}],"id":"1650c47b-ab30-4b91-9ef6-28f6eacfb78c","description":"<p><strong>Actions related to a specific organization.</strong></p>\n","_postman_id":"1650c47b-ab30-4b91-9ef6-28f6eacfb78c","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Product","item":[{"name":"Fetch Product Details","id":"b084b090-a1d6-4d56-93a4-24f9d0c342ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/product/:organizationProductId","description":"<p>Retrieve the details of a single product by its ID, or by name and version.</p>\n<p><strong>Permissions required:</strong> `readProduct`</p>\n<h3 id=\"params\">Params</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Location</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>organizationProductId</code></td>\n<td>Path</td>\n<td>string (ObjectId)</td>\n<td>Yes</td>\n<td>The product ID to retrieve.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>Query</td>\n<td>string</td>\n<td>No</td>\n<td>Product name. Used as a fallback lookup when combined with <code>version</code>.</td>\n</tr>\n<tr>\n<td><code>version</code></td>\n<td>Query</td>\n<td>string</td>\n<td>No</td>\n<td>Product version. Used as a fallback lookup when combined with <code>name</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["product",":organizationProductId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"organizationProductId"}]}},"response":[{"id":"3c5cf519-5c62-4d41-9f9b-679d2679e70c","name":"Product","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/product/:organizationProductId","host":["{{apiUrl}}"],"path":["product",":organizationProductId"],"variable":[{"key":"organizationProductId","value":"664a1f2e3b4c5d6e7f8a9b0c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n      \"_id\": \"664a1f2e3b4c5d6e7f8a9b0c\",\n      \"organizationId\": \"664a1f2e3b4c5d6e7f8a9b0d\",\n      \"name\": \"My Product\",\n      \"version\": \"2.0.0\",\n      \"manufacturer\": \"Acme Corp\",\n      \"supplier\": \"Acme Supply\",\n      \"description\": \"A hierarchical product.\",\n      \"relationship\": \"first\",\n      \"customers\": [],\n      \"labelIds\": [],\n      \"isDeleted\": false,\n      \"countVulnerabilities\": {\n        \"inKEV\": 0,\n        \"mitigate\": 2,\n        \"monitor\": 5,\n        \"accept\": 1\n      }\n    }\n  ]\n}"}],"_postman_id":"b084b090-a1d6-4d56-93a4-24f9d0c342ca"},{"name":"Create or Update Product","id":"4770cb69-b135-4b8b-8fc0-a81b7b33034e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiUrl}}/product/","description":"<p>Create a new product, or update an existing one.</p>\n<p>- <strong>Create:</strong> Omit `organizationProductId` from the body. Requires `name`, `version`, and `manufacturer`.</p>\n<p>- <strong>Update:</strong> Include `organizationProductId` in the body. Only the provided fields are updated.</p>\n<p>If you update the `name` or `version` of a product, background jobs are triggered to recalculate vulnerability counts and propagate changes through the product hierarchy. An SBOM regeneration job is also triggered.</p>\n<p>Duplicate products (same name + version, case-insensitive) are not allowed within an organization.</p>\n<p><strong>Permissions required:</strong> `createProduct`</p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["product",""],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c55ca98d-c1f3-4d53-93d4-694248d2fd2b","name":"Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"My Product\",\n  \"version\": \"2.0.0\",\n  \"manufacturer\": \"Acme Corp\",\n  \"description\": \"A new hierarchical product.\",\n  \"labels\": [\"664a1f2e3b4c5d6e7f8a9b0c\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/product"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"success\": true,\n  \"errors\": [],\n  \"data\": [\n    {\n      \"_id\": \"664a1f2e3b4c5d6e7f8a9b0c\",\n      \"organizationId\": \"664a1f2e3b4c5d6e7f8a9b0d\",\n      \"name\": \"My Product\",\n      \"version\": \"2.0.0\",\n      \"manufacturer\": \"Acme Corp\",\n      \"description\": \"A new hierarchical product.\",\n      \"customers\": [],\n      \"labelIds\": [\"664a1f2e3b4c5d6e7f8a9b0c\"],\n      \"isDeleted\": false\n    }\n  ]\n}"}],"_postman_id":"4770cb69-b135-4b8b-8fc0-a81b7b33034e"},{"name":"Delete Product","id":"38a4c520-0e5e-4ce7-bf95-c704e66fb915","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiUrl}}/product/:organizationProductId","description":"<p>Soft-delete a product and cascade the deletion to all related records.</p>\n<ul>\n<li>The product is marked as deleted (<code>isDeleted: true</code>).</li>\n<li>All <strong>inventory records</strong> where the product appears in the hierarchy path are deleted.</li>\n<li>All <strong>vulnerability records</strong> where the product appears in the vulnerability path are deleted.</li>\n<li>Parent products that contained the deleted product are recalculated in the background.</li>\n<li>Label counts are decremented accordingly.</li>\n</ul>\n<p><strong>Permissions required:</strong> <code>deleteProduct</code></p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["product",":organizationProductId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"organizationProductId"}]}},"response":[{"id":"593d3f04-686e-419e-98a3-021ee89352d9","name":"Product","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{apiUrl}}/product/:organizationProductId","host":["{{apiUrl}}"],"path":["product",":organizationProductId"],"variable":[{"key":"organizationProductId","value":"664a1f2e3b4c5d6e7f8a9b0c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"success\": true,\n  \"errors\": [],\n  \"data\": []\n}"}],"_postman_id":"38a4c520-0e5e-4ce7-bf95-c704e66fb915"},{"name":"Fetch Product Inventory","id":"be36330c-aaa6-4ed6-b473-092073cab054","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/product/:organizationProductId/inventory","description":"<p>Retrieve the inventory (assets and sub-products) of a product.</p>\n<p><strong>Behavior depends on filters and feature flags:</strong><br />- <strong>No filters:</strong> Returns a flat, paginated list of direct children only (assets and sub-products immediately under this product).</p>\n<p>- <strong>With filters:</strong> Returns a hierarchical tree structure. The response includes nested `children` arrays representing the full product hierarchy, with ancestor chains preserved to show the path to each matching item.</p>\n<p><strong>Permissions required:</strong> `readProduct`, `readAsset`</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>page</code></td>\n<td>string</td>\n<td><code>\"1\"</code></td>\n<td>Page number (1-indexed).</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>string</td>\n<td><code>\"100\"</code></td>\n<td>Results per page. Maximum <code>100</code>.</td>\n</tr>\n<tr>\n<td><code>sort</code></td>\n<td>string</td>\n<td><code>'{ \"_id\": -1 }'</code></td>\n<td>MongoDB sort expression as a JSON string.</td>\n</tr>\n<tr>\n<td><code>filters</code></td>\n<td>string</td>\n<td>—</td>\n<td>JSON array of filter objects. Each object has <code>field</code> (string) and <code>value</code> (any).</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["product",":organizationProductId","inventory"],"host":["{{apiUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"organizationProductId"}]}},"response":[{"id":"dea559ec-80a1-4da2-bb84-191bb5f67c87","name":"Product Inventory","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiUrl}}/product/:organizationProductId/inventory","host":["{{apiUrl}}"],"path":["product",":organizationProductId","inventory"],"variable":[{"key":"organizationProductId","value":"664a1f2e3b4c5d6e7f8a9f96"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"success\": true,\n  \"queryInfo\": {\n    \"page\": 1,\n    \"limit\": 100,\n    \"totalReturn\": 2,\n    \"totalCount\": 5\n  },\n  \"errors\": [],\n  \"filterErrors\": [],\n  \"filterNotes\": [],\n  \"data\": [\n    {\n      \"_id\": \"664a1f2e3b4c5d6e7f8a9b10\",\n      \"name\": \"sub-product-a\",\n      \"entityType\": \"product\",\n      \"children\": [\n        {\n          \"_id\": \"664a1f2e3b4c5d6e7f8a9b11\",\n          \"name\": \"matched-asset\",\n          \"entityType\": \"asset\",\n          \"children\": []\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"be36330c-aaa6-4ed6-b473-092073cab054"},{"name":"Add Product Inventory","id":"ff975181-7e94-4e4e-8032-1a8ea55600d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiUrl}}/product/:organizationProductId/inventory","description":"<p>Add assets and/or sub-products to a product's inventory.</p>\n<p>You can add both assets and sub-products in a single request. The endpoint performs the following validations:</p>\n<ul>\n<li>A product cannot be added as a sub-product of itself.</li>\n<li>Circular references are detected and rejected (e.g., if Product A contains Product B, you cannot add Product A as a child of Product B).</li>\n</ul>\n<p>On success, background jobs are triggered to:</p>\n<ul>\n<li>Recalculate vulnerability counts</li>\n<li>Create and propagate vulnerability records through the hierarchy</li>\n<li>Regenerate the product SBOM</li>\n</ul>\n<p><strong>Permissions required:</strong> <code>updateProduct</code>, <code>updateAsset</code></p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["product",":organizationProductId","inventory"],"host":["{{apiUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"organizationProductId"}]}},"response":[{"id":"907ea7a0-45a0-4bdc-b124-ca09a3e17e8a","name":"Add Product Inventory","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productIds\": [\"664a1f2e3b4c5d6e7f8a9b10\"],\n  \"assetIds\": [\n    \"664a1f2e3b4c5d6e7f8a9b11\",\n    \"664a1f2e3b4c5d6e7f8a9b12\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiUrl}}/product/:organizationProductId/inventory","host":["{{apiUrl}}"],"path":["product",":organizationProductId","inventory"],"variable":[{"key":"organizationProductId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"success\": true,\n  \"queryInfo\": {\n    \"totalCount\": 15\n  },\n  \"errors\": [],\n  \"data\": [\n    {\n      \"type\": \"assets\",\n      \"createdInventory\": 2,\n      \"createdVulns\": 12\n    },\n    {\n      \"type\": \"products\",\n      \"createdInventory\": 1,\n      \"createdVulns\": 0\n    }\n  ]\n}"}],"_postman_id":"ff975181-7e94-4e4e-8032-1a8ea55600d0"},{"name":"Remove Product Inventory","id":"0fa66aa2-1e4c-4c59-b023-fb8dd8e7dfdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiUrl}}/product/:organizationProductId/inventory","description":"<p>Remove inventory items (assets or sub-products) from a product.</p>\n<p>Deletion cascades through the hierarchy. When you remove an item from a product, all descendant records beneath that item in the product's hierarchy are also removed. For example, removing sub-product B from product A will also remove all of B's children, grandchildren, etc. from A's hierarchy.</p>\n<p>Both inventory records and associated vulnerability records are deleted.</p>\n<p>On success, background jobs are triggered to recalculate vulnerability counts and propagate changes. An SBOM regeneration job is also triggered.</p>\n<p><strong>Permissions required:</strong> <code>updateProduct</code>, <code>updateAsset</code></p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["product",":organizationProductId","inventory"],"host":["{{apiUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"organizationProductId"}]}},"response":[{"id":"3190f54b-02e5-4086-8f1b-7897111c8aab","name":"Remove Product Inventory","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"inventoryIds\": [\n    \"664a1f2e3b4c5d6e7f8a9b10\",\n    \"664a1f2e3b4c5d6e7f8a9b11\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiUrl}}/product/:organizationProductId/inventory","host":["{{apiUrl}}"],"path":["product",":organizationProductId","inventory"],"variable":[{"key":"organizationProductId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"success\": true,\n  \"queryInfo\": {\n    \"totalCount\": 8\n  },\n  \"errors\": [],\n  \"data\": []\n}"}],"_postman_id":"0fa66aa2-1e4c-4c59-b023-fb8dd8e7dfdf"},{"name":"Fetch Product Vulnerabilities","id":"2b870b60-d324-4381-afae-52fb090bc67f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/product/:organizationProductId/vulnerabilities","description":"<p>Retrieve vulnerabilities associated with a product.</p>\n<p>This endpoint returns vulnerabilities from across the entire product hierarchy — including vulnerabilities in sub-products and nested assets — not just direct assets. Each vulnerability record includes the full path through the hierarchy to the affected asset.</p>\n<p>Results are paginated, sortable, and filterable.</p>\n<p><strong>Permissions required:</strong> <code>readProduct</code>, <code>readVulnerability</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>page</code></td>\n<td>string</td>\n<td><code>\"1\"</code></td>\n<td>Page number (1-indexed).</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>string</td>\n<td><code>\"20\"</code></td>\n<td>Results per page.</td>\n</tr>\n<tr>\n<td><code>sortBy</code></td>\n<td>string</td>\n<td>—</td>\n<td>Field name to sort by.</td>\n</tr>\n<tr>\n<td><code>filters</code></td>\n<td>string</td>\n<td>—</td>\n<td>JSON array of filter objects: <code>[{ \"field\": \"fieldName\", \"value\": \"filterValue\" }]</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["product",":organizationProductId","vulnerabilities"],"host":["{{apiUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"organizationProductId"}]}},"response":[{"id":"e0423c7c-af9f-4d03-b19c-2ef3f1a26b4d","name":"Fetch Product Vulnerabilities","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/product/:organizationProductId/vulnerabilities","host":["{{apiUrl}}"],"path":["product",":organizationProductId","vulnerabilities"],"variable":[{"key":"organizationProductId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"success\": true,\n  \"queryInfo\": {\n    \"page\": \"1\",\n    \"total\": 42,\n    \"current\": 20,\n    \"limit\": \"20\"\n  },\n  \"errors\": [],\n  \"data\": [\n    {\n      \"_id\": \"664a1f2e3b4c5d6e7f8a9b20\",\n      \"cveId\": \"CVE-2024-1234\",\n      \"organizationId\": \"664a1f2e3b4c5d6e7f8a9b0d\",\n      \"rootParentId\": \"664a1f2e3b4c5d6e7f8a9b0c\",\n      \"directParentId\": \"664a1f2e3b4c5d6e7f8a9b10\",\n      \"finalAssetId\": \"664a1f2e3b4c5d6e7f8a9b11\",\n      \"pathToVuln\": [\n        \"664a1f2e3b4c5d6e7f8a9b0c\",\n        \"664a1f2e3b4c5d6e7f8a9b10\",\n        \"664a1f2e3b4c5d6e7f8a9b11\"\n      ],\n      \"pathToVulnNames\": [\n        \"Root Product\",\n        \"Sub-Product A\",\n        \"vulnerable-library\"\n      ],\n      \"recommendedAction\": \"mitigate\",\n      \"preferredScore\": 9.8,\n      \"epssScore\": 0.85,\n      \"publishDate\": \"2024-01-15T00:00:00.000Z\",\n      \"kevData\": {\n        \"inKEV\": true\n      },\n      \"isTriaged\": false\n    }\n  ]\n}"}],"_postman_id":"2b870b60-d324-4381-afae-52fb090bc67f"},{"name":"Download Product SBOM","id":"18cdfa43-e646-4eb3-9c27-fef04a284907","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/product/:organizationProductId/download","description":"<p>Download the generated SBOM file for a product. This endpoint generates a pre-signed S3 URL and redirects the client to it for download.</p>\n<p>The response is a <strong>302 redirect</strong> to a pre-signed URL that expires after 1 hour. The browser will automatically begin downloading the file with an appropriate filename derived from the product name and version.</p>\n<p><strong>Permissions required:</strong> <code>readProduct</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>format</code></td>\n<td>string</td>\n<td><code>\"cdx\"</code></td>\n<td>SBOM format to download. Accepted values: <code>\"spdx\"</code>, <code>\"cyclonedx\"</code>, <code>\"cdx\"</code>. <code>\"cyclonedx\"</code> and <code>\"cdx\"</code> are equivalent.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["product",":organizationProductId","download"],"host":["{{apiUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"organizationProductId"}]}},"response":[],"_postman_id":"18cdfa43-e646-4eb3-9c27-fef04a284907"}],"id":"0a2e3115-eeb4-4893-84fb-8ada4f72a34e","description":"<p>Manage product hierarchies. Products support nested parent-child relationships, where a product can contain both assets and sub-products as inventory items.</p>\n","_postman_id":"0a2e3115-eeb4-4893-84fb-8ada4f72a34e","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Sub-Organization","item":[{"name":"Delete Sub-Organization","id":"8dc17151-606d-42cf-91a4-b2697e7ac62b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiUrl}}/sub-organizations/:subOrgId","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>delete:sub-organization</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sub-organizations",":subOrgId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of sub-organization to delete</p>\n","type":"text/plain"},"type":"any","value":"","key":"subOrgId"}]}},"response":[],"_postman_id":"8dc17151-606d-42cf-91a4-b2697e7ac62b"},{"name":"Update Sub-Organization","id":"47072830-58b2-49e9-bb2a-fcd998b14991","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":" {\n   \"name\": \"Product Team\"\n }","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/sub-organizations/:subOrgId","description":"<p>Update sub-org name.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:sub-organization</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sub-organizations",":subOrgId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of sub-organization to update</p>\n","type":"text/plain"},"type":"any","value":"","key":"subOrgId"}]}},"response":[],"_postman_id":"47072830-58b2-49e9-bb2a-fcd998b14991"},{"name":"Fetch sub-organizations","id":"dbe5607f-c7ba-48ec-baf5-bc9223b12ea5","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"organizationid","value":"6359f39ee9d7b7033b55bc23","description":"<p>(optional) Required only for user session, ignored when using API token</p>\n","type":"text"}],"url":"{{apiUrl}}/organization/child","description":"<p>List sub-organizations.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sub-organization</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h2 id=\"response-schema\"><strong>Response schema:</strong></h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n  \"title\": \"ManifestApiResponse\",\n  \"type\": \"object\",\n  \"required\": [\"success\"],\n  \"properties\": {\n    \"success\": {\n      \"type\": \"boolean\",\n      \"description\": \"Indicates whether the API request was successful\"\n    },\n    \"errors\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"string\"\n      },\n      \"description\": \"Errors are major, blocking issues that occurred during the request\",\n      \"example\": null\n    },\n    \"data\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"required\": [\n          \"_id\",\n          \"domains\",\n          \"name\",\n          \"status\",\n          \"enableLockSignupToDomains\",\n          \"enableSignupWhitelist\",\n          \"enableSignupBlacklist\",\n          \"enableIpWhitelist\",\n          \"defaultPermissions\",\n          \"dateCreated\",\n          \"dateModified\",\n          \"countMembers\",\n          \"organizationAdmins\",\n          \"organizationAdminNames\"\n        ],\n        \"properties\": {\n          \"_id\": {\n            \"type\": \"string\",\n            \"description\": \"Unique identifier for the child organization\",\n            \"example\": \"507f1f77bcf86cd799439011\"\n          },\n          \"domains\": {\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"string\"\n            },\n            \"description\": \"List of domains associated with the child organization\",\n            \"example\": [\"child.example.com\", \"subdomain.child.example.com\"]\n          },\n          \"name\": {\n            \"type\": \"string\",\n            \"description\": \"Child organization name\",\n            \"example\": \"Acme Subsidiary Corp\"\n          },\n          \"status\": {\n            \"type\": \"string\",\n            \"description\": \"Current status of the child organization. Endpoint only returns active sub orgs\",\n            \"example\": \"active\"\n          },\n          \"enableLockSignupToDomains\": {\n            \"type\": \"boolean\",\n            \"description\": \"Whether signup is restricted to organization domains\",\n            \"example\": true\n          },\n          \"enableSignupWhitelist\": {\n            \"type\": \"boolean\",\n            \"description\": \"Whether signup whitelist is enabled\",\n            \"example\": false\n          },\n          \"enableSignupBlacklist\": {\n            \"type\": \"boolean\",\n            \"description\": \"Whether signup blacklist is enabled\",\n            \"example\": false\n          },\n          \"enableIpWhitelist\": {\n            \"type\": \"boolean\",\n            \"description\": \"Whether IP whitelist is enabled\",\n            \"example\": false\n          },\n          \"defaultPermissions\": {\n            \"type\": \"null\",\n            \"description\": \"DEPRECATED\"\n          },\n          \"dateCreated\": {\n            \"type\": \"string\",\n            \"format\": \"date-time\",\n            \"description\": \"Creation date of the child organization\",\n            \"example\": \"2024-01-01T00:00:00Z\"\n          },\n          \"dateModified\": {\n            \"type\": \"string\",\n            \"format\": \"date-time\",\n            \"description\": \"Last modification date\",\n            \"example\": \"2024-01-15T10:30:00Z\"\n          },\n          \"countMembers\": {\n            \"type\": \"integer\",\n            \"description\": \"Total number of members in the child organization\",\n            \"example\": 15\n          },\n          \"organizationAdmins\": {\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"object\",\n              \"required\": [\n                \"_id\",\n                \"userId\",\n                \"organizationId\",\n                \"isOrganizationAdmin\",\n                \"groupId\",\n                \"dateCreated\",\n                \"dateModified\",\n                \"__v\"\n              ],\n              \"properties\": {\n                \"_id\": {\n                  \"type\": \"string\",\n                  \"example\": \"507f1f77bcf86cd799439015\"\n                },\n                \"userId\": {\n                  \"type\": \"string\",\n                  \"example\": \"507f1f77bcf86cd799439016\"\n                },\n                \"organizationId\": {\n                  \"type\": \"string\",\n                  \"example\": \"507f1f77bcf86cd799439011\"\n                },\n                \"isReadOnly\": {\n                  \"type\": \"boolean\",\n                  \"example\": false,\n                  \"description\": \"DEPRECATED\"\n                },\n                \"isOrganizationAdmin\": {\n                  \"type\": \"boolean\",\n                  \"example\": true,\n                  \"description\": \"DEPRECATED\"\n                },\n                \"groupId\": {\n                  \"type\": \"array\",\n                  \"items\": {\n                    \"type\": \"string\"\n                  },\n                  \"example\": [\"507f1f77bcf86cd799439020\"]\n                },\n                \"dateCreated\": {\n                  \"type\": \"string\",\n                  \"format\": \"date-time\",\n                  \"example\": \"2024-01-10T08:00:00Z\"\n                },\n                \"dateModified\": {\n                  \"type\": \"string\",\n                  \"format\": \"date-time\",\n                  \"example\": \"2024-01-15T10:30:00Z\"\n                },\n                \"firstName\": {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"payload\": {\n                      \"type\": \"string\",\n                      \"description\": \"Encrypted first name payload\"\n                    },\n                    \"iv\": {\n                      \"type\": \"string\",\n                      \"description\": \"Initialization vector for encryption\"\n                    },\n                    \"_id\": {\n                      \"type\": \"string\",\n                      \"description\": \"Unique identifier for the encrypted field\"\n                    }\n                  },\n                  \"required\": [\"payload\", \"iv\", \"_id\"],\n                  \"description\": \"Encrypted first name object\"\n                },\n                \"lastName\": {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"payload\": {\n                      \"type\": \"string\",\n                      \"description\": \"Encrypted last name payload\"\n                    },\n                    \"iv\": {\n                      \"type\": \"string\",\n                      \"description\": \"Initialization vector for encryption\"\n                    },\n                    \"_id\": {\n                      \"type\": \"string\",\n                      \"description\": \"Unique identifier for the encrypted field\"\n                    }\n                  },\n                  \"required\": [\"payload\", \"iv\", \"_id\"],\n                  \"description\": \"Encrypted last name object\"\n                },\n                \"title\": {\n                  \"type\": [\"object\", \"null\"],\n                  \"properties\": {\n                    \"payload\": {\n                      \"type\": \"string\",\n                      \"description\": \"Encrypted title payload\"\n                    },\n                    \"iv\": {\n                      \"type\": \"string\",\n                      \"description\": \"Initialization vector for encryption\"\n                    },\n                    \"_id\": {\n                      \"type\": \"string\",\n                      \"description\": \"Unique identifier for the encrypted field\"\n                    }\n                  },\n                  \"required\": [\"payload\", \"iv\", \"_id\"],\n                  \"description\": \"Encrypted title object\"\n                },\n                \"agreementAcceptedAt\": {\n                  \"type\": \"string\",\n                  \"format\": \"date-time\",\n                  \"description\": \"Date when user accepted the agreement\",\n                  \"example\": \"2024-01-10T09:00:00Z\"\n                }\n              }\n            },\n            \"description\": \"Array of organization administrators\"\n          },\n          \"organizationAdminNames\": {\n            \"type\": \"string\",\n            \"description\": \"Comma-separated string of organization admin names\",\n            \"example\": \"John Doe, Jane Smith\"\n          }\n        }\n      },\n      \"description\": \"Array of child organizations\"\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["organization","child"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e27c820a-e89b-4554-94e0-559f98c14f44","name":"200 - (Success) Fetch Sub-Organizations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <api-token-value>","type":"text"}],"url":"{{apiUrl}}/organization/child"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jul 2025 17:19:46 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"38"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"26-WGjGJkW3LQ6SqWW13BWp/Hs6TW4\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"_id\": \"507f1f77bcf86cd799439011\",\n            \"domains\": [],\n            \"name\": \"Example Subsidiary Corp\",\n            \"status\": \"active\",\n            \"enableLockSignupToDomains\": false,\n            \"enableSignupWhitelist\": true,\n            \"enableSignupBlacklist\": false,\n            \"enableIpWhitelist\": false,\n            \"defaultPermissions\": null,\n            \"dateCreated\": \"2024-01-15T10:30:00.000Z\",\n            \"dateModified\": \"2024-07-31T15:02:15.571Z\",\n            \"countMembers\": 6,\n            \"organizationAdmins\": [\n                {\n                    \"_id\": \"507f1f77bcf86cd799439021\",\n                    \"userId\": \"507f1f77bcf86cd799439031\",\n                    \"organizationId\": \"507f1f77bcf86cd799439011\",\n                    \"isReadOnly\": false,\n                    \"isOrganizationAdmin\": true,\n                    \"groupId\": [],\n                    \"firstName\": {\n                        \"payload\": \"a1b2c3d4e5f6789012345678901234ab\",\n                        \"iv\": \"1a2b3c4d5e6f789012345678901234cd\",\n                        \"_id\": \"507f1f77bcf86cd799439041\"\n                    },\n                    \"lastName\": {\n                        \"payload\": \"9z8y7x6w5v4u321098765432109876ef\",\n                        \"iv\": \"9a8b7c6d5e4f321098765432109876gh\",\n                        \"_id\": \"507f1f77bcf86cd799439042\"\n                    },\n                    \"title\": {\n                        \"payload\": \"f1e2d3c4b5a6987654321098765432109876543210987654321098765432109876ij\",\n                        \"iv\": \"f1e2d3c4b5a6987654321098765432kl\",\n                        \"_id\": \"507f1f77bcf86cd799439043\"\n                    },\n                    \"dateCreated\": \"2024-01-15T10:25:33.689Z\",\n                    \"dateModified\": \"2024-01-15T10:25:33.689Z\",\n                    \"__v\": 0\n                },\n                {\n                    \"_id\": \"507f1f77bcf86cd799439022\",\n                    \"userId\": \"507f1f77bcf86cd799439032\",\n                    \"organizationId\": \"507f1f77bcf86cd799439011\",\n                    \"isReadOnly\": false,\n                    \"isOrganizationAdmin\": true,\n                    \"groupId\": [],\n                    \"firstName\": {\n                        \"payload\": \"b2c3d4e5f6a7890123456789012345mn\",\n                        \"iv\": \"2b3c4d5e6f7a890123456789012345op\",\n                        \"_id\": \"507f1f77bcf86cd799439044\"\n                    },\n                    \"lastName\": {\n                        \"payload\": \"8y7x6w5v4u3t210987654321098765qr\",\n                        \"iv\": \"8b7c6d5e4f3t210987654321098765st\",\n                        \"_id\": \"507f1f77bcf86cd799439045\"\n                    },\n                    \"dateCreated\": \"2024-01-16T17:33:44.746Z\",\n                    \"dateModified\": \"2024-01-16T17:33:44.746Z\",\n                    \"__v\": 0\n                }\n            ],\n            \"organizationAdminNames\": \"John Smith, Jane Doe\"\n        },\n        {\n            \"_id\": \"507f1f77bcf86cd799439012\",\n            \"domains\": [\n                \"example.com\"\n            ],\n            \"name\": \"Demo Testing Organization\",\n            \"status\": \"active\",\n            \"enableLockSignupToDomains\": false,\n            \"enableSignupWhitelist\": true,\n            \"enableSignupBlacklist\": false,\n            \"enableIpWhitelist\": false,\n            \"defaultPermissions\": null,\n            \"dateCreated\": \"2024-02-11T16:18:02.979Z\",\n            \"dateModified\": \"2024-07-31T15:02:12.338Z\",\n            \"countMembers\": 7,\n            \"organizationAdmins\": [\n                {\n                    \"_id\": \"507f1f77bcf86cd799439023\",\n                    \"userId\": \"507f1f77bcf86cd799439033\",\n                    \"organizationId\": \"507f1f77bcf86cd799439012\",\n                    \"isReadOnly\": false,\n                    \"isOrganizationAdmin\": true,\n                    \"groupId\": [],\n                    \"firstName\": {\n                        \"payload\": \"c3d4e5f6a7b8901234567890123456uv\",\n                        \"iv\": \"3c4d5e6f7a8b901234567890123456wx\",\n                        \"_id\": \"507f1f77bcf86cd799439046\"\n                    },\n                    \"lastName\": {\n                        \"payload\": \"7x6w5v4u3t2s109876543210987654yz\",\n                        \"iv\": \"7c6d5e4f3t2s109876543210987654ab\",\n                        \"_id\": \"507f1f77bcf86cd799439047\"\n                    },\n                    \"title\": {\n                        \"payload\": \"e2d3c4b5a69876543210987654321098765432109876543210987654321098765cd\",\n                        \"iv\": \"e2d3c4b5a69876543210987654321ef\",\n                        \"_id\": \"507f1f77bcf86cd799439048\"\n                    },\n                    \"dateCreated\": \"2024-02-11T16:18:02.993Z\",\n                    \"dateModified\": \"2024-07-28T18:21:12.795Z\",\n                    \"__v\": 0\n                }\n            ],\n            \"organizationAdminNames\": \"Admin User, Test Manager\"\n        },\n        {\n            \"_id\": \"507f1f77bcf86cd799439013\",\n            \"domains\": [\n                \"test.example.com\"\n            ],\n            \"name\": \"Sample Development Org\",\n            \"status\": \"active\",\n            \"enableLockSignupToDomains\": false,\n            \"enableSignupWhitelist\": true,\n            \"enableSignupBlacklist\": false,\n            \"enableIpWhitelist\": false,\n            \"defaultPermissions\": null,\n            \"dateCreated\": \"2024-03-30T17:49:09.631Z\",\n            \"dateModified\": \"2024-07-31T15:02:12.924Z\",\n            \"countMembers\": 7,\n            \"organizationAdmins\": [\n                {\n                    \"_id\": \"507f1f77bcf86cd799439024\",\n                    \"userId\": \"507f1f77bcf86cd799439034\",\n                    \"organizationId\": \"507f1f77bcf86cd799439013\",\n                    \"isReadOnly\": false,\n                    \"isOrganizationAdmin\": true,\n                    \"groupId\": [],\n                    \"firstName\": {\n                        \"payload\": \"d4e5f6a7b8c9012345678901234567gh\",\n                        \"iv\": \"4d5e6f7a8b9c012345678901234567ij\",\n                        \"_id\": \"507f1f77bcf86cd799439049\"\n                    },\n                    \"lastName\": {\n                        \"payload\": \"6w5v4u3t2s1r098765432109876543kl\",\n                        \"iv\": \"6d5e4f3t2s1r098765432109876543mn\",\n                        \"_id\": \"507f1f77bcf86cd799439050\"\n                    },\n                    \"title\": null,\n                    \"dateCreated\": \"2024-03-30T17:49:09.644Z\",\n                    \"dateModified\": \"2024-05-14T13:05:40.835Z\",\n                    \"__v\": 0\n                }\n            ],\n            \"organizationAdminNames\": \"Development Lead, QA Engineer\"\n        },\n        {\n            \"_id\": \"507f1f77bcf86cd799439014\",\n            \"domains\": [\n                \"demo.example.com\"\n            ],\n            \"name\": \"Enterprise Demo Organization\",\n            \"status\": \"active\",\n            \"enableLockSignupToDomains\": false,\n            \"enableSignupWhitelist\": true,\n            \"enableSignupBlacklist\": false,\n            \"enableIpWhitelist\": false,\n            \"defaultPermissions\": null,\n            \"dateCreated\": \"2024-04-28T21:41:07.200Z\",\n            \"dateModified\": \"2024-07-31T15:01:59.196Z\",\n            \"countMembers\": 8,\n            \"organizationAdmins\": [\n                {\n                    \"_id\": \"507f1f77bcf86cd799439025\",\n                    \"userId\": \"507f1f77bcf86cd799439035\",\n                    \"organizationId\": \"507f1f77bcf86cd799439014\",\n                    \"isReadOnly\": true,\n                    \"isOrganizationAdmin\": true,\n                    \"groupId\": [],\n                    \"firstName\": {\n                        \"payload\": \"e5f6a7b8c9d0123456789012345678op\",\n                        \"iv\": \"5e6f7a8b9c0d123456789012345678qr\",\n                        \"_id\": \"507f1f77bcf86cd799439051\"\n                    },\n                    \"lastName\": {\n                        \"payload\": \"5v4u3t2s1r0q987654321098765432st\",\n                        \"iv\": \"5e4f3t2s1r0q987654321098765432uv\",\n                        \"_id\": \"507f1f77bcf86cd799439052\"\n                    },\n                    \"title\": {\n                        \"payload\": \"d3c4b5a698765432109876543210987654321098765432109876543210987654wx\",\n                        \"iv\": \"d3c4b5a698765432109876543210987yz\",\n                        \"_id\": \"507f1f77bcf86cd799439053\"\n                    },\n                    \"dateCreated\": \"2024-04-28T21:41:07.213Z\",\n                    \"dateModified\": \"2024-05-23T15:22:23.837Z\",\n                    \"__v\": 0\n                }\n            ],\n            \"organizationAdminNames\": \"Enterprise Admin, Business Manager\"\n        },\n        {\n            \"_id\": \"507f1f77bcf86cd799439015\",\n            \"domains\": [\n                \"scripts.example.com\"\n            ],\n            \"name\": \"Automation Scripts Organization\",\n            \"status\": \"active\",\n            \"enableLockSignupToDomains\": false,\n            \"enableSignupWhitelist\": true,\n            \"enableSignupBlacklist\": false,\n            \"enableIpWhitelist\": false,\n            \"defaultPermissions\": null,\n            \"dateCreated\": \"2024-05-22T16:24:47.978Z\",\n            \"dateModified\": \"2024-07-31T15:01:53.261Z\",\n            \"countMembers\": 9,\n            \"organizationAdmins\": [\n                {\n                    \"_id\": \"507f1f77bcf86cd799439026\",\n                    \"userId\": \"507f1f77bcf86cd799439036\",\n                    \"organizationId\": \"507f1f77bcf86cd799439015\",\n                    \"isOrganizationAdmin\": true,\n                    \"groupId\": [],\n                    \"firstName\": {\n                        \"payload\": \"f6a7b8c9d0e1234567890123456789ab\",\n                        \"iv\": \"6f7a8b9c0d1e234567890123456789cd\",\n                        \"_id\": \"507f1f77bcf86cd799439054\"\n                    },\n                    \"lastName\": {\n                        \"payload\": \"4u3t2s1r0q9p876543210987654321ef\",\n                        \"iv\": \"4f3t2s1r0q9p876543210987654321gh\",\n                        \"_id\": \"507f1f77bcf86cd799439055\"\n                    },\n                    \"title\": {\n                        \"payload\": \"c4b5a6987654321098765432109876ij\",\n                        \"iv\": \"c4b5a6987654321098765432109876kl\",\n                        \"_id\": \"507f1f77bcf86cd799439056\"\n                    },\n                    \"dateCreated\": \"2024-05-22T16:24:47.989Z\",\n                    \"dateModified\": \"2024-05-05T19:24:53.661Z\",\n                    \"__v\": 0\n                }\n            ],\n            \"organizationAdminNames\": \"Script Admin, Automation Engineer\"\n        }\n    ]\n}"},{"id":"120cb62b-79ad-4d33-839b-b956c1cacc92","name":"200 - (Error) Fetch Sub-Organizations","originalRequest":{"method":"GET","header":[{"key":"organizationid","value":"6359f39ee9d7b7033b55bc23","description":"(optional) Required only for user session, ignored when using API token","type":"text"}],"url":"{{apiUrl}}/organization/child"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jul 2025 17:19:46 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"38"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"26-WGjGJkW3LQ6SqWW13BWp/Hs6TW4\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"errors\": [\n        \"Error fetching child organizations\"\n    ],\n    \"data\": []\n}"}],"_postman_id":"dbe5607f-c7ba-48ec-baf5-bc9223b12ea5"},{"name":"Create sub-organization","id":"0340359a-b3a0-44a2-89e4-7d96a56d654a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"organizationid","value":"6359f39ee9d7b7033b55bc23","description":"<p>(optional) Required only for user session, ignored when using API token</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Sub org name\",\n    \"addAllCurrentAdminsToSubOrg\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/sub-organizations","description":"<p>Create a new sub-organization.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:sub-organization</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h2 id=\"response-schema\"><strong>Response schema:</strong></h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n  \"title\": \"POST sub organizations response\",\n  \"type\": \"object\",\n  \"required\": [\"success\"],\n  \"properties\": {\n    \"success\": {\n      \"type\": \"boolean\",\n      \"description\": \"Indicates whether the API request was successful\"\n    },\n    \"errors\": {\n      \"anyOf\": [\n        { \"type\": \"null\" },\n        {\n          \"type\": \"array\",\n          \"items\": {\n            \"type\": \"string\"\n          }\n        }\n      ],\n      \"description\": \"Errors that occurred during the request\"\n    },\n    \"data\": {\n      \"anyOf\": [\n        { \"type\": \"null\" },\n        {\n          \"type\": \"object\",\n          \"required\": [\n            \"id\",\n            \"name\",\n            \"domains\",\n            \"status\",\n            \"enableInviteOnly\",\n            \"enableLockSignupToDomains\",\n            \"enableSignupWhitelist\",\n            \"enableSignupBlacklist\",\n            \"enableIpWhitelist\",\n            \"memberApprovalThreshold\",\n            \"countGroups\"\n          ],\n          \"properties\": {\n            \"id\": {\n              \"type\": \"string\",\n              \"description\": \"Unique identifier for the child organization\",\n              \"example\": \"507f1f77bcf86cd799439011\"\n            },\n            \"dateCreated\": {\n              \"type\": \"string\",\n              \"format\": \"date-time\",\n              \"description\": \"Creation timestamp\",\n              \"example\": \"2024-07-31T19:20:46.115Z\"\n            },\n            \"dateModified\": {\n              \"type\": \"string\",\n              \"format\": \"date-time\",\n              \"description\": \"Last modification timestamp\",\n              \"example\": \"2024-07-31T19:20:46.115Z\"\n            },\n            \"SSOProviders\": {\n              \"type\": \"null\",\n              \"description\": \"Single Sign-On providers configuration\"\n            },\n            \"agreementText\": {\n              \"type\": \"string\",\n              \"description\": \"Agreement text for the organization\",\n              \"example\": \"\"\n            },\n            \"children\": {\n              \"type\": \"array\",\n              \"items\": {\n                \"type\": \"string\"\n              },\n              \"description\": \"Array of child organization IDs\",\n              \"example\": []\n            },\n            \"countGroups\": {\n              \"type\": \"integer\",\n              \"description\": \"Number of groups in the organization\",\n              \"example\": 0\n            },\n            \"countMembers\": {\n              \"type\": [\"integer\", \"null\"],\n              \"description\": \"Number of members in the organization\",\n              \"example\": null\n            },\n            \"defaultPermissions\": {\n              \"type\": \"null\",\n              \"description\": \"Default permissions for new members\"\n            },\n            \"defaultSettings\": {\n              \"type\": \"null\",\n              \"description\": \"Default settings for the organization\"\n            },\n            \"domains\": {\n              \"type\": \"array\",\n              \"items\": {\n                \"type\": \"string\"\n              },\n              \"description\": \"Allowed domains for the organization\",\n              \"example\": []\n            },\n            \"enableInviteOnly\": {\n              \"type\": \"boolean\",\n              \"description\": \"Whether the organization is invite-only\",\n              \"example\": true\n            },\n            \"enableIpWhitelist\": {\n              \"type\": \"boolean\",\n              \"description\": \"Whether IP whitelisting is enabled\",\n              \"example\": false\n            },\n            \"enableLockSignupToDomains\": {\n              \"type\": \"boolean\",\n              \"description\": \"Whether signup is locked to specific domains\",\n              \"example\": false\n            },\n            \"enableSignupBlacklist\": {\n              \"type\": \"boolean\",\n              \"description\": \"Whether signup blacklist is enabled\",\n              \"example\": false\n            },\n            \"enableSignupWhitelist\": {\n              \"type\": \"boolean\",\n              \"description\": \"Whether signup whitelist is enabled\",\n              \"example\": true\n            },\n            \"enabledFeatures\": {\n              \"type\": \"array\",\n              \"items\": {\n                \"type\": \"string\"\n              },\n              \"description\": \"List of enabled features for the organization\",\n              \"example\": [\n                \"accepted-vuln-triage\",\n                \"modified-sbom\",\n                \"import-gh-labels\"\n              ]\n            },\n            \"importedAsInitialSeed\": {\n              \"type\": \"null\",\n              \"description\": \"Whether this organization was imported as initial seed\"\n            },\n            \"isPaid\": {\n              \"type\": \"boolean\",\n              \"description\": \"Whether the organization has a paid plan\",\n              \"example\": true\n            },\n            \"maxSessionLength\": {\n              \"type\": \"string\",\n              \"description\": \"Maximum session length\",\n              \"example\": \"7d\"\n            },\n            \"memberApprovalThreshold\": {\n              \"type\": \"integer\",\n              \"description\": \"Number of approvals required for member actions\",\n              \"example\": 1\n            },\n            \"mfaMethod\": {\n              \"type\": \"array\",\n              \"items\": {\n                \"type\": \"string\"\n              },\n              \"description\": \"Multi-factor authentication methods\",\n              \"example\": []\n            },\n            \"name\": {\n              \"type\": \"string\",\n              \"description\": \"Organization name\",\n              \"example\": \"Demo Child Organization\"\n            },\n            \"organizationStats\":  {\n            \"type\": [\"object\", \"null\"],\n            \"properties\": {\n              \"countTotalActiveAssets\": {\n                \"type\": \"integer\",\n                \"description\": \"Number of total active assets in this Organization\",\n                \"example\": 150\n              },\n              \"countTotalActiveAssetComponents\": {\n                \"type\": \"integer\",\n                \"description\": \"Number of total components for all active assets in this Organization\",\n                \"example\": 2500\n              },\n              \"countTotalSboms\": {\n                \"type\": \"integer\",\n                \"description\": \"Number of total sboms that have been uploaded, processed and have not been deleted\",\n                \"example\": 45\n              },\n              \"countUniqueAssetVulnerabilities\": {\n                \"type\": \"integer\",\n                \"description\": \"Number of unique vulnerabilities for all active assets in this Organization\",\n                \"example\": 125\n              }\n            },\n            \"required\": [\n              \"countTotalActiveAssets\",\n              \"countTotalActiveAssetComponents\",\n              \"countTotalSboms\",\n              \"countUniqueAssetVulnerabilities\"\n            ],\n            \"description\": \"Organization statistics\"\n          },\n            \"parent\": {\n              \"type\": \"array\",\n              \"items\": {\n                \"type\": \"string\"\n              },\n              \"description\": \"Array of parent organization IDs.\",\n              \"maxItems\": 1,\n              \"example\": [\"507f1f77bcf86cd799439012\"]\n            },\n            \"requiresAgreement\": {\n              \"type\": \"boolean\",\n              \"description\": \"Whether the organization requires agreement acceptance\",\n              \"example\": false\n            },\n            \"status\": {\n              \"type\": \"string\",\n              \"enum\": [\"active\", \"inactive\"],\n              \"description\": \"Organization status\",\n              \"example\": \"active\"\n            },\n            \"vulnMatchDataSources\": {\n              \"type\": \"array\",\n              \"items\": {\n                \"type\": \"string\"\n              },\n              \"description\": \"Vulnerability match data sources\",\n              \"example\": []\n            }\n          }\n        }\n      ],\n      \"description\": \"Child organization data\"\n    }\n  }\n\n</code></pre>\n<p>Request body schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n  \"type\": \"object\",\n  \"properties\": {\n    \"name\": {\n      \"type\": \"string\",\n      \"description\": \"The name of the sub-organization to create\",\n      \"minLength\": 1\n    },\n    \"addAllCurrentAdminsToSubOrg\": {\n      \"type\": \"boolean\",\n      \"description\": \"Whether to add all current admins from the parent organization to the new sub-organization\",\n      \"default\": false\n    }\n  },\n  \"required\": [\"name\"],\n  \"additionalProperties\": false\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sub-organizations"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"829717fa-c468-4ccc-9e62-04bbf101a863","name":"200 - (Error) Create sub-organization","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <api-token-value>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Sub org name\",\n    \"addAllCurrentAdminsToSubOrg\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/sub-organizations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Feb 2023 15:24:23 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"178"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"b2-TEvzI9SPvnl/e+mpG4SNtNRNx9I\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"errors\": [\n        \"Creating sub org failed.\"\n    ]\n}"},{"id":"6521c5ad-cd77-4385-bbb0-51716ed64a01","name":"200 - (Successful) Create sub-organization","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <api-token-value>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Sub org name\",\n    \"addAllCurrentAdminsToSubOrg\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/sub-organizations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jul 2025 19:20:46 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"315-67YB5Q3V3/XEn341HPuoJ4CWbg8\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": {\n        \"id\": \"507f1f77bcf86cd799439011\",\n        \"dateCreated\": \"2024-07-31T19:20:46.115Z\",\n        \"dateModified\": \"2024-07-31T19:20:46.115Z\",\n        \"SSOProviders\": null,\n        \"agreementText\": \"\",\n        \"children\": [],\n        \"countGroups\": 0,\n        \"countMembers\": null,\n        \"defaultPermissions\": null,\n        \"defaultSettings\": null,\n        \"domains\": [],\n        \"enableInviteOnly\": true,\n        \"enableIpWhitelist\": false,\n        \"enableLockSignupToDomains\": false,\n        \"enableSignupBlacklist\": false,\n        \"enableSignupWhitelist\": true,\n        \"enabledFeatures\": [\n        ],\n        \"importedAsInitialSeed\": null,\n        \"isPaid\": true,\n        \"maxSessionLength\": \"7d\",\n        \"memberApprovalThreshold\": 1,\n        \"mfaMethod\": [],\n        \"name\": \"Demo Child Organization\",\n        \"organizationStats\": null,\n        \"parent\": [\n            \"507f1f77bcf86cd799439012\"\n        ],\n        \"requiresAgreement\": false,\n        \"status\": \"active\",\n        \"vulnMatchDataSources\": []\n    }\n}"},{"id":"d176b845-9383-4e7f-9edb-c264f8f5be7c","name":"200 - (Successful) Create cub-organization | With user session","originalRequest":{"method":"POST","header":[{"key":"Cookie","value":"manifest=<authcookievalue>;"},{"key":"organizationid","value":"66b3f0c1a76d5348fe3b4111"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Sub org name\",\n    \"addAllCurrentAdminsToSubOrg\": true\n}"},"url":"https://api.manifestcyber.com/v1/sub-organizations"},"status":"Unauthorized","code":401,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 04 Aug 2025 22:02:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"43"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"2b-RoQayO0+VqSno+r/36Yeyobd+1I\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": {\n        \"id\": \"507f1f77bcf86cd799439011\",\n        \"dateCreated\": \"2024-07-31T19:20:46.115Z\",\n        \"dateModified\": \"2024-07-31T19:20:46.115Z\",\n        \"SSOProviders\": null,\n        \"agreementText\": \"\",\n        \"children\": [],\n        \"countGroups\": 0,\n        \"countMembers\": null,\n        \"defaultPermissions\": null,\n        \"defaultSettings\": null,\n        \"domains\": [],\n        \"enableInviteOnly\": true,\n        \"enableIpWhitelist\": false,\n        \"enableLockSignupToDomains\": false,\n        \"enableSignupBlacklist\": false,\n        \"enableSignupWhitelist\": true,\n        \"enabledFeatures\": [\n        ],\n        \"importedAsInitialSeed\": null,\n        \"isPaid\": true,\n        \"maxSessionLength\": \"7d\",\n        \"memberApprovalThreshold\": 1,\n        \"mfaMethod\": [],\n        \"name\": \"Demo Child Organization\",\n        \"organizationStats\": null,\n        \"parent\": [\n            \"507f1f77bcf86cd799439012\"\n        ],\n        \"requiresAgreement\": false,\n        \"status\": \"active\",\n        \"vulnMatchDataSources\": []\n    }\n}"}],"_postman_id":"0340359a-b3a0-44a2-89e4-7d96a56d654a"}],"id":"c5503ead-6156-439e-a289-b407adb054d4","_postman_id":"c5503ead-6156-439e-a289-b407adb054d4","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Users","item":[{"name":"GET users","id":"622d2da8-8f1c-4ed7-a633-8533092d0486","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"organizationid","value":"6359f39ee9d7b7033b55bc23","description":"<p>(optional) Required only for user session, ignored when using API token</p>\n","type":"text"}],"url":"{{apiUrl}}/users","description":"<p>List organization users</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:user</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h2 id=\"response-schema\"><strong>Response schema:</strong></h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n  \"title\": \"GET users response\",\n  \"type\": \"object\",\n  \"required\": [\"success\"],\n  \"properties\": {\n    \"success\": {\n      \"type\": \"boolean\",\n      \"description\": \"Indicates whether the API request was successful\"\n    },\n    \"errors\": {\n      \"anyOf\": [\n        { \"type\": \"null\" },\n        {\n          \"type\": \"array\",\n          \"items\": {\n            \"type\": \"string\"\n          }\n        }\n      ],\n      \"description\": \"Errors are major, blocking issues that occurred during the request\"\n    },\n    \"warnings\": {\n      \"anyOf\": [\n        { \"type\": \"null\" },\n        {\n          \"type\": \"array\",\n          \"items\": {\n            \"type\": \"string\"\n          }\n        }\n      ],\n      \"description\": \"Warnings are non-blocking minor issues or notes to the requestor that occurred during the request\"\n    },\n    \"data\": {\n    \"type\": [\"array\", \"null\"],\n          \"items\": {\n            \"type\": \"object\",\n            \"required\": [\n              \"_id\",\n              \"dateCreated\",\n              \"dateModified\",\n              \"email\",\n              \"firstName\",\n              \"lastLogin\",\n              \"lastName\",\n              \"roles\",\n              \"status\",\n              \"organizationGroups\",\n              \"adminOfSubOrgsIds\",\n              \"organizationMember\"\n            ],\n            \"properties\": {\n              \"_id\": {\n                \"type\": \"string\",\n                \"description\": \"Unique identifier for the organization member\",\n                \"example\": \"507f1f77bcf86cd799439011\"\n              },\n              \"dateCreated\": {\n                \"type\": \"string\",\n                \"description\": \"Creation date of the member record\"\n              },\n              \"dateModified\": {\n                \"type\": \"string\",\n                \"description\": \"Last modification date\",\n                \"example\": \"2024-01-20T14:45:00Z\"\n              },\n              \"email\": {\n                \"type\": \"string\",\n                \"format\": \"email\",\n                \"description\": \"Member's email address\",\n                \"example\": \"john.doe@example.com\"\n              },\n              \"firstName\": {\n                \"type\": \"string\",\n                \"description\": \"Member's first name\",\n                \"example\": \"John\"\n              },\n              \"lastLogin\": {\n                \"type\": \"string\",\n                \"format\": \"date-time\",\n                \"description\": \"Last login timestamp\",\n                \"example\": \"2024-01-25T09:15:00Z\"\n              },\n              \"lastName\": {\n                \"type\": \"string\",\n                \"description\": \"Member's last name\",\n                \"example\": \"Doe\"\n              },\n              \"roles\": {\n                \"type\": \"array\",\n                \"items\": {\n                  \"type\": \"object\",\n                  \"required\": [\"id\", \"name\", \"urn\"],\n                  \"properties\": {\n                    \"id\": {\n                      \"type\": \"string\",\n                      \"description\": \"Role identifier\",\n                      \"example\": \"role_123\"\n                    },\n                    \"name\": {\n                      \"type\": \"string\",\n                      \"description\": \"Human-readable role name\",\n                      \"example\": \"Administrator\"\n                    },\n                    \"urn\": {\n                      \"type\": \"string\",\n                      \"enum\": [\"admin\", \"view-only\", \"member\"],\n                      \"description\": \"Role URN identifier\",\n                      \"example\": \"admin\"\n                    }\n                  }\n                },\n                \"description\": \"Array of roles assigned to the member\"\n              },\n              \"invitedDate\": {\n                \"type\": \"string\",\n                \"format\": \"date-time\",\n                \"description\": \"Date when the member was invited (optional)\",\n                \"example\": \"2024-01-10T12:00:00Z\"\n              },\n              \"status\": {\n                \"type\": \"string\",\n                \"enum\": [\"active\"],\n                \"description\": \"Member's current status\",\n                \"example\": \"active\"\n              },\n              \"title\": {\n                \"type\": \"string\",\n                \"description\": \"Member's job title or position\",\n                \"example\": \"Senior Developer\"\n              },\n              \"organizationGroups\": {\n                \"type\": \"array\",\n                \"items\": {\n                  \"type\": \"object\",\n                  \"required\": [\"_id\", \"name\"],\n                  \"properties\": {\n                    \"_id\": {\n                      \"type\": \"string\",\n                      \"description\": \"Group identifier\",\n                      \"example\": \"507f1f77bcf86cd799439012\"\n                    },\n                    \"name\": {\n                      \"type\": \"string\",\n                      \"description\": \"Group name\",\n                      \"example\": \"Engineering Team\"\n                    }\n                  }\n                },\n                \"description\": \"Groups the member belongs to within the organization. Currently its always an empty list\"\n              },\n              \"adminOfSubOrgsIds\": {\n                \"type\": \"array\",\n                \"items\": {\n                  \"type\": \"string\"\n                },\n                \"description\": \"Array of sub-organization IDs where this member is an admin\",\n                \"example\": [\"507f1f77bcf86cd799439013\", \"507f1f77bcf86cd799439014\"]\n              },\n              \"organizationMember\": {\n                \"type\": \"array\",\n                \"items\": {\n                  \"type\": \"object\",\n                  \"required\": [\"_id\", \"userId\", \"organizationId\", \"groupId\"],\n                  \"properties\": {\n                    \"_id\": {\n                      \"type\": \"string\",\n                      \"description\": \"Organization member record identifier\",\n                      \"example\": \"507f1f77bcf86cd799439015\"\n                    },\n                    \"userId\": {\n                      \"type\": \"string\",\n                      \"description\": \"User identifier\",\n                      \"example\": \"507f1f77bcf86cd799439016\"\n                    },\n                    \"organizationId\": {\n                      \"type\": \"string\",\n                      \"description\": \"Organization identifier\",\n                      \"example\": \"507f1f77bcf86cd799439017\"\n                    },\n                    \"isOrganizationAdmin\": {\n                      \"type\": \"boolean\",\n                      \"description\": \"DEPRECATED: check roles list instead\",\n                      \"example\": true\n                    },\n                    \"isReadOnly\": {\n                      \"type\": \"boolean\",\n                      \"description\": \"DEPRECATED: check roles list instead\",\n                      \"example\": false\n                    },\n                    \"groupId\": {\n                      \"type\": \"array\",\n                      \"items\": {\n                        \"type\": \"string\"\n                      },\n                      \"description\": \"Array of group IDs the member belongs to. Currently it is always an empty list\",\n                      \"example\": [\"507f1f77bcf86cd799439018\"]\n                    }\n                  }\n                },\n                \"description\": \"Organization membership details\"\n              }\n            }\n          },\n      \"description\": \"Array of organization members, its null if the request is not successful\"\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["users"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e03b2fe6-06ec-4e51-848f-1f2626ff3716","name":"200 - (Success) GET users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <api-token-value>","type":"text"}],"url":"{{apiUrl}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jul 2025 18:19:58 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"542-BZro96Me6GUzk57qJPGmrLsOmkA\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"_id\": \"507f1f77bcf86cd799439011\",\n            \"dateCreated\": \"Mon Jan 15 2024 10:30:00 GMT+0000 (Coordinated Universal Time)\",\n            \"dateModified\": \"Fri Jul 28 2024 14:27:54 GMT+0000 (Coordinated Universal Time)\",\n            \"status\": \"active\",\n            \"organizationMember\": [\n                {\n                    \"isOrganizationAdmin\": true,\n                    \"isReadonly\": false,\n                    \"_id\": \"507f1f77bcf86cd799439021\",\n                    \"userId\": \"507f1f77bcf86cd799439011\",\n                    \"organizationId\": \"507f1f77bcf86cd799439031\",\n                    \"groupId\": []\n                }\n            ],\n            \"email\": \"john.smith@example.com\",\n            \"organizationGroups\": [],\n            \"roles\": [\n                {\n                    \"id\": \"admin\",\n                    \"name\": \"Admin\",\n                    \"urn\": \"admin\"\n                }\n            ],\n            \"adminOfSubOrgsIds\": [\n                \"507f1f77bcf86cd799439041\"\n            ],\n            \"lastLogin\": \"2024-07-28T14:27:54.707Z\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\"\n        },\n        {\n            \"_id\": \"507f1f77bcf86cd799439012\",\n            \"dateCreated\": \"Wed Mar 05 2024 15:28:59 GMT+0000 (Coordinated Universal Time)\",\n            \"dateModified\": \"Wed Mar 05 2024 15:28:59 GMT+0000 (Coordinated Universal Time)\",\n            \"locale\": \"\",\n            \"status\": \"active\",\n            \"organizationMember\": [\n                {\n                    \"isOrganizationAdmin\": false,\n                    \"isReadonly\": true,\n                    \"_id\": \"507f1f77bcf86cd799439022\",\n                    \"userId\": \"507f1f77bcf86cd799439012\",\n                    \"organizationId\": \"507f1f77bcf86cd799439031\",\n                    \"groupId\": []\n                }\n            ],\n            \"email\": \"jane.doe@example.com\",\n            \"organizationGroups\": [],\n            \"roles\": [\n                {\n                    \"id\": \"view-only\",\n                    \"name\": \"View Only\",\n                    \"urn\": \"view-only\"\n                }\n            ],\n            \"adminOfSubOrgsIds\": [],\n            \"lastLogin\": \"2024-03-05T15:28:59.764Z\",\n            \"firstName\": \"Jane\",\n            \"lastName\": \"Doe\"\n        }\n    ]\n}"},{"id":"3954f46a-aa37-4cfb-9e1b-6f98c66b117a","name":"200 - (Error) GET users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <api-token-value>","type":"text"}],"url":"{{apiUrl}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jul 2025 18:19:58 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"542-BZro96Me6GUzk57qJPGmrLsOmkA\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"errors\": [\"Fetch users failed\"]\n}"},{"id":"10b1bf6c-8962-4b7b-bfe3-4e819238171a","name":"401 - GET users","originalRequest":{"method":"GET","header":[],"url":"{{apiUrl}}/users"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jul 2025 18:19:58 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.29.0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"542-BZro96Me6GUzk57qJPGmrLsOmkA\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [\"Unauthorized\"]\n}"}],"_postman_id":"622d2da8-8f1c-4ed7-a633-8533092d0486"}],"id":"17a019ff-92db-4955-92e5-e8a4e797d627","_postman_id":"17a019ff-92db-4955-92e5-e8a4e797d627","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Stats","item":[{"name":"Stats","id":"06b0b65d-f9e7-4aee-a10e-2e4d2f71e33a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/stats","description":"<p>Return a quick summary of total Assets, Components, SBOMs, and Vulnerabilities for an organization.</p>\n<p>Avaialble filters on this route:</p>\n<ul>\n<li><code>assetActive</code>: Array[boolean]. Only include data and totals including assets that have an <code>isActive</code> value matching one of the values in the array (OR, not AND).</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sbom-and-vex</code> <code>read:asset</code> <code>read:vulnerability</code> <code>read:component</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["stats"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Filter results based on one or more (applied additively) preset filters. This should be an array of objects with keys <code>field</code> and <code>value</code>.</p>\n","type":"text/plain"},"key":"filters","value":"[{'field':'assetActive','value':[true]}]"}],"variable":[]}},"response":[{"id":"5450bb88-2fe0-47a1-b42a-8e6932bba41b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{apiUrl}}/stats"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Feb 2023 07:19:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"125"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"7d-ac0Bh+X0WANFq3QR199zybKomJ0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": {\n        \"countAssets\": 247,\n        \"countVulnerabilities\": 3529,\n        \"countComponents\": 124341,\n        \"countSboms\": 364\n    }\n}"}],"_postman_id":"06b0b65d-f9e7-4aee-a10e-2e4d2f71e33a"}],"id":"da192ec7-bb81-4372-b1a1-cd25a1dccad2","_postman_id":"da192ec7-bb81-4372-b1a1-cd25a1dccad2","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Search","item":[{"name":"Search","id":"27edc241-0a4e-4079-a8c2-dcc821de93c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/search","description":"<p>Search for a given <code>search_for</code> string across all accessible Assets, Components, and Vulnerabilities.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code> , <code>read:product</code>, <code>read:asset</code>, <code>read:component</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["search"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>String to search for</p>\n","type":"text/plain"},"key":"search_for","value":"CVE-2015-1648"},{"disabled":true,"description":{"content":"<p>Return data in a flat format?</p>\n","type":"text/plain"},"key":"data_flat","value":"true"},{"disabled":true,"description":{"content":"<p>Group result data by entity type (Asset, Component, Vulnerability)?</p>\n","type":"text/plain"},"key":"grouped","value":"true"},{"disabled":true,"description":{"content":"<p>Max number of results to return (defaults to 10, max 1000).</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[]}},"response":[],"_postman_id":"27edc241-0a4e-4079-a8c2-dcc821de93c9"}],"id":"693d129e-b490-4a95-8607-b2f107f5b8c9","_postman_id":"693d129e-b490-4a95-8607-b2f107f5b8c9","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"SBOM","item":[{"name":"Download SBOM","id":"1e2539bf-84e0-4f41-9cef-fbb34d583885","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/sbom/download/:sbomid","description":"<p>Attempts to generate a download link for a given SBOM based on ID.</p>\n<p><strong>Optional Redirection:</strong><br />By default, a successful response will return a JSON object that includes a download link for the SBOM. You may optionally specify <code>redirect=true</code> to instead have a successful response immediately redirect to the download href.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sbom","download",":sbomid"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Immediately redirect to download link href.</p>\n","type":"text/plain"},"key":"redirect","value":"boolean"}],"variable":[{"description":{"content":"<p>Required. Provide the ID of an SBOM to download.</p>\n","type":"text/plain"},"type":"any","value":"67ae50792515f036d13b6519","key":"sbomid"}]}},"response":[{"id":"2045a1dc-765c-4949-b75f-8a91e6bf0e59","name":"Successful link generation (JSON response)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/sbom/download/:sbomid","host":["{{apiUrl}}"],"path":["sbom","download",":sbomid"],"query":[{"key":"redirect","value":"boolean","description":"Optional. Immediately redirect to download link href.","type":"text","disabled":true}],"variable":[{"key":"sbomid","value":"6375b33cf4a45004db19eaab","description":"Required. Provide the ID of an SBOM to download."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Feb 2023 21:25:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1949"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"79d-9GS3Ii503cujQpYZUdOk9OmtQ88\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"url\": \"<download URL here>\",\n            \"sbomid\": \"<confirmation SBOM id>\"\n        }\n    ]\n}"}],"_postman_id":"1e2539bf-84e0-4f41-9cef-fbb34d583885"},{"name":"Get SBOM","id":"65a810be-a17f-4bc5-99a3-db7c7ab6b242","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/sbom/6859a543a39f813c287cc636","description":"<p>Retrieves the SBOM record by ID.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sbom","6859a543a39f813c287cc636"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"65cd7a75-3d8d-455d-b1a8-90d68e2fefd6","name":"Succesful get SBOM record","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/sbom/:sbomid","host":["{{apiUrl}}"],"path":["sbom",":sbomid"],"variable":[{"key":"sbomid","value":"6373eced8b36640ce9d01edf","description":"The SBOM id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://http://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2049"},{"key":"ETag","value":"W/\"801-ZnSAiWyxBUKMZISbe2qqEL2OgDU\""},{"key":"Date","value":"Tue, 06 Feb 2024 18:05:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"isDeleted\": false,\n            \"parentSbomId\": null,\n            \"parentAssetId\": null,\n            \"childrenSbomIds\": [],\n            \"labelIds\": [],\n            \"cveIds\": [],\n            \"countVulnerabilities\": null,\n            \"fileType\": \"SBOM\",\n            \"childrenOrganizationAssetIds\": [],\n            \"uploadByVendor\": null,\n            \"vendorSourceSbom\": null,\n            \"attestation\": null,\n            \"whenConverting\": null,\n            \"whenConverted\": null,\n            \"conversionS3Bucket\": null,\n            \"conversionS3Key\": null,\n            \"convertedFromType\": null,\n            \"whenVulnerabilityScanStarted\": null,\n            \"whenVulnerabilityScanned\": null,\n            \"whenVulnerabilityCountStarted\": null,\n            \"whenVulnerabilityCounted\": null,\n            \"metadata\": null,\n            \"imageTags\": null,\n            \"isRemoteOssOrigin\": null,\n            \"ossIngestId\": null,\n            \"_id\": \"6373eced8b36640ce9d01edf\",\n            \"uploadUserId\": \"6373eced8b36640ce9d01edf\",\n            \"organizationId\": \"6548e79178c3db5370227236\",\n            \"assetId\": \"6373eced8b36640ce9d01edf\",\n            \"status\": null,\n            \"tokenId\": null,\n            \"s3Key\": \"12620622300599235/2333225-b49d-456c-9b6e-222211333.json\",\n            \"fileName\": \"mycontainer.json\",\n            \"source\": \"manual\",\n            \"format\": \"SPDX\",\n            \"formatVersion\": \"SPDX-2.2\",\n            \"relationshipToOrg\": \"third\",\n            \"context\": null,\n            \"whenInitialized\": \"2022-11-15T19:47:57.448Z\",\n            \"whenQueued\": null,\n            \"whenUploading\": null,\n            \"whenUploaded\": \"2022-11-15T19:47:57.544Z\",\n            \"whenProcessing\": \"2023-12-31T22:56:16.063Z\",\n            \"whenProcessed\": \"2023-12-31T22:56:20.206Z\",\n            \"uploadErrors\": [],\n            \"processErrors\": [],\n            \"derivedEcosytem\": null,\n            \"dateCreated\": \"2022-11-15T19:47:57.449Z\",\n            \"dateModified\": \"2023-12-31T22:59:26.834Z\",\n            \"__v\": 0,\n            \"isPublished\": true,\n            \"s3Bucket\": \"ingestion-sbom-raw-data\",\n            \"assetName\": \"mycontainer\",\n            \"hasFlatHierarchyGraph\": false,\n            \"whenHierarchyGraphProcessing\": \"2023-12-31T22:59:23.875Z\",\n            \"graphProcessErrors\": [],\n            \"whenHierarchyGraphProcessed\": \"2023-12-31T22:59:26.833Z\",\n            \"containerName\": \"mycontainer:15.0.0\",\n            \"imageId\": [\n                \"sha256:f144880be18f12657d98ea9693fcb5b3e009ce3008...\"\n            ],\n            \"repoTags\": []\n            \"assetVersion\": \"2023-12-31T22:56:16.253Z\",\n            \"organizationAssetId\": \"6591f190c12173dc1d403156\"\n        }\n    ],\n    \"errors\": []\n}"}],"_postman_id":"65a810be-a17f-4bc5-99a3-db7c7ab6b242"}],"id":"8d7a865b-105c-4b1f-a7f1-5881aa777dff","description":"<p>This folder includes routes targeted at a specific SBOM.</p>\n","_postman_id":"8d7a865b-105c-4b1f-a7f1-5881aa777dff","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"SBOMs","item":[{"name":"List SBOMs","id":"982389ba-d085-432b-9b74-dfbfaaf84812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/sboms","description":"<p>Fetch a list of SBOMs (metadata, not contents) from my organization. See optional parameters below. By default, response is paginated and limited to 100 results per page.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sboms"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional, defaults to 1. Fetch a specifc page of results (based on limit)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Optional, defaults to 100. Limit results per page. Max per page is 1000.</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Confine list to only show SBOMs uploaded for a single asset.</p>\n","type":"text/plain"},"key":"assetId","value":"some-asset-id"},{"disabled":true,"description":{"content":"<p>Optional. Search results and return only results matching the given text. This will match against asset name and, for containers, will additionally attempt to match against container name, image ID, or repo tag.</p>\n","type":"text/plain"},"key":"searchText","value":"foobar"}],"variable":[]}},"response":[{"id":"a9f7c6b2-8005-4f47-b2de-f0d73a32acf8","name":"Fetch all SBOMS for manifest-web-app (Limit to 1 result)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/sboms?page=1&limit=1&searchText=manifest-web-app","host":["{{apiUrl}}"],"path":["sboms"],"query":[{"key":"page","value":"1","description":"Optional, defaults to 1. Fetch a specifc page of results (based on limit)"},{"key":"limit","value":"1","description":"Optional, defaults to 100. Limit results per page. Max per page is 1000."},{"key":"assetId","value":"","description":"Optional. Confine list to only show SBOMs uploaded for a single asset.","type":"text","disabled":true},{"key":"searchText","value":"manifest-web-app","description":"Optional. Search results and return only results with a name that includes given text."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Feb 2023 21:56:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1187"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"4a3-I99C6GEeYtnRCNT3GLyqFyFDrLA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"queryInfo\": {\n        \"page\": 1,\n        \"limit\": 1,\n        \"totalReturn\": 1\n    },\n    \"data\": [\n        {\n            \"_id\": \"<sbom id>\",\n            \"organizationId\": \"<organization id>\",\n            \"assetId\": \"<asset id>\",\n            \"assetName\": \"manifest-web-app\",\n            \"assetVersion\": \"1.0.0\",\n            \"isPublished\": true,\n            \"parentSbomId\": null,\n            \"parentAssetId\": null,\n            \"childrenSbomIds\": [],\n            \"childrenAssetIds\": [],\n            \"tokenId\": \"<token id>\",\n            \"fileName\": \"manifest-web-app-sbom.json\",\n            \"source\": \"github-action\",\n            \"format\": \"CycloneDX\",\n            \"formatVersion\": \"1.4\",\n            \"relationshipToOrg\": \"first\",\n            \"context\": null,\n            \"whenInitialized\": \"2023-02-06T17:17:22.370Z\",\n            \"whenQueued\": \"2023-02-06T17:17:22.370Z\",\n            \"whenUploading\": \"2023-02-06T17:17:22.370Z\",\n            \"whenUploaded\": \"2023-02-06T17:17:22.370Z\",\n            \"whenProcessing\": \"2023-02-06T17:17:22.370Z\",\n            \"whenProcessed\": \"2023-02-06T17:17:22.370Z\",\n            \"whenVulnerabilityScanStarted\": \"2023-02-06T17:17:22.370Z\",\n            \"whenVulnerabilityScanned\": \"2023-02-06T17:17:22.370Z\",\n            \"whenVulnerabilityCountStarted\": \"2023-02-06T17:17:22.370Z\",\n            \"whenVulnerabilityCounted\": \"2023-02-06T17:17:22.370Z\",\n            \"uploadErrors\": [],\n            \"processErrors\": [],\n            \"derivedEcosytem\": \"npm\",\n            \"dateCreated\": \"2023-02-06T17:17:22.370Z\",\n            \"dateModified\": \"2023-02-06T17:17:22.370Z\"\n        }\n    ]\n}"}],"_postman_id":"982389ba-d085-432b-9b74-dfbfaaf84812"},{"name":"Fetch and/or Merge Multiple SBOMs","id":"6e038a53-5aa8-4035-bd06-2d7c511d01ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/sboms/multiple-sbom-return","description":"<p>Attempts to merge given SBOMs and returns the merged SBOM. Due to the greenfield nature of SBOM formats, merging requirements, etc there are some specific constraints around this route and while we expect it to work in most cases, we generally still consider it 'experimental'.</p>\n<p>Only SBOMs of the same format may be merged (e.g. a CycloneDX SBOM may only be merged with another CycloneDX SBOM).</p>\n<h5 id=\"input-options\"><strong>Input Options:</strong></h5>\n<ul>\n<li><p>Only SBOMs of the same format may be used.</p>\n</li>\n<li><p>You may specify one or both of comma-separated lists of SBOM ID's (<code>sbomIds</code>)and Asset ID's (<code>assetIds</code>) to merge. If you supply both, we will attempt to combine the lists accordingly (but we generally recommend only providing one or the other).</p>\n</li>\n<li><p>You may specify a comma-separated list of Asset Names (<code>assetNames</code>) to merge. We will attempt the merge with the most recent SBOM for each given asset. Because this is less specific than SBOM or Asset ID's, this may not be used in conjunction with the above. If you also specify Asset ID's, for example, <code>assetNames</code> will be ignored.</p>\n</li>\n<li><p><code>assetIds</code>, <code>sbomIds</code>, <code>imageIds</code>, <code>repoTags</code> are all additive and non-duplicative: Specifying <code>n</code> assetIds and <code>z</code> repoTags would perform the requested action(s) against <code>n + z</code> SBOMs (once per unique SBOM).</p>\n</li>\n</ul>\n<h5 id=\"output-options\"><strong>Output Options:</strong></h5>\n<ul>\n<li><p><code>merge</code>: Optional (boolean), defaults false. If true, will attempt to merge the requested SBOM's (must be same format). If false, the requested SBOM's will not be merged and will instead be packed together in a .zip file.</p>\n</li>\n<li><p><code>publish</code>: Optional (boolean), defaults false. Requires <code>merge=true</code>. If true, will automatically ingest the merged SBOM into Manifest.</p>\n</li>\n<li><p><code>mergedAssetName</code>: If <code>merge=true</code>, specify a name for the new merged Asset.</p>\n</li>\n<li><p><code>mergedAssetVersion</code>: If <code>merge=true</code>, specify a version to use for the new merged Asset.</p>\n</li>\n</ul>\n<h5 id=\"response-notes\"><strong>Response Notes:</strong></h5>\n<ul>\n<li><p>If <code>merge=true</code>, or an error occurs, response will be a JSON that includes the merged SBOM. If <code>publish=true</code>, JSON response will also include the newly published SBOM ID (as <code>sbomId</code>).</p>\n</li>\n<li><p>If <code>merge=false</code>, response will be a zip file stream that includes the requested SBOMs.</p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sboms","multiple-sbom-return"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Comma-separated list of Asset ID's to fetch and/or merge. May be used in combo with <code>sbomIds</code></p>\n","type":"text/plain"},"key":"assetIds","value":"foo, bar"},{"disabled":true,"description":{"content":"<p>Comma-separated list of SBOM ID's to fetch and/or merge. May be used in combo with <code>assetIds</code></p>\n","type":"text/plain"},"key":"sbomIds","value":"foo, bar"},{"disabled":true,"description":{"content":"<p>Optional. Comma-separate list of Asset Names to fetch and/or merge. This is ignored if <code>assetIds</code> or <code>sbomIds</code> is provided.</p>\n","type":"text/plain"},"key":"assetNames","value":"foo, bar"},{"disabled":true,"description":{"content":"<p>Optional (boolean), defaults false. If true, will attempt to merge the requested SBOM's (must be same format). If false, the requested SBOM's will not be merged and will instead be packed together in a .zip file.</p>\n","type":"text/plain"},"key":"merge","value":"false"},{"disabled":true,"description":{"content":"<p>Optional (boolean), defaults false. Requires merge=true. If true, will automatically ingest the merged SBOM into Manifest.</p>\n","type":"text/plain"},"key":"publish","value":"false"},{"disabled":true,"description":{"content":"<p>If merge=true, specify a name for the new merged Asset.</p>\n","type":"text/plain"},"key":"mergedAssetName","value":"HelloWorldTest"},{"disabled":true,"description":{"content":"<p>If merge=true, specify a version to use for the new merged Asset.</p>\n","type":"text/plain"},"key":"mergedAssetVersion","value":"1.0.1"},{"disabled":true,"description":{"content":"<p>Optional: Type String. seperated by comma if there are multiple. Perform the requested action(s) for all SBOMs/Assets matching these image ID's.</p>\n","type":"text/plain"},"key":"imageIds","value":"test1234356456456"},{"disabled":true,"description":{"content":"<p>Optional. Seperated by comma. Search by repository tags. Perform the requested action(s) for all SBOMs/Assets matching these repo tags.</p>\n","type":"text/plain"},"key":"repoTags","value":"test"}],"variable":[]}},"response":[],"_postman_id":"6e038a53-5aa8-4035-bd06-2d7c511d01ec"},{"name":"Share SBOMS","id":"849d500d-f3df-4714-bc65-dc095d936660","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/sboms/share/","description":"<p>Share 1 or multiple SBOMs via email, or generate a secure link (expires after 24hrs) that can be pasted and reused.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:sbom-share</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sboms","share",""],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Comma-separated list of sbomIds to share. Unique links will generated and sent to each email.</p>\n","type":"text/plain"},"key":"sbomIds","value":null},{"disabled":true,"description":{"content":"<p>Comma-separated list of emails to share with.</p>\n","type":"text/plain"},"key":"emails","value":null},{"disabled":true,"description":{"content":"<p>Optional. Should a shareable link be generated? Anyone with the link can access &amp; download.</p>\n","type":"text/plain"},"key":"includeShareLink","value":null}],"variable":[]}},"response":[],"_postman_id":"849d500d-f3df-4714-bc65-dc095d936660"},{"name":"Delete SBOMs","id":"b8dda4cb-f500-4e9e-aafe-0a2914ceabfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"sbomIds\": []\r\n}"},"url":"{{apiUrl}}/sboms/delete","description":"<p>Upload a new SBOM for your organization. The SBOM will immediately be queued for processing (visible in the Manifest app in the SBOM's tab). Max SBOM upload size is currently set to 500Mb. Please contact our team if you need us to enable larger filesizes for your organization.</p>\n<p>PUT body should be a JSON payload that includes the below data:</p>\n<ul>\n<li><p>base64BomContents: This should be the base64-encoded SBOM data (e.g. your SBOM file contents encoded into a base64 string)</p>\n</li>\n<li><p>source: Optional, defaults to manual. This is used in the Manifest app to track the source of an SBOM (e.g. a manual upload vs one from your CICD pipeline). This may be set to any string. Our CircleCI Orb sets this to circle-ci and our Github action sets this to github-action.</p>\n</li>\n<li><p>relationship: Optional, defaults to third. This is used in the Manifest app to track whether a given SBOM is first-party (built/supplied by your organization) or third-party (build/supplied to your organization). Accepted values are first or third.</p>\n</li>\n<li><p>filename: Optional, defaults to incoming-file. This may be any string, and is used as a fallback for Asset Name if Manifest is unable to derive one when processing the SBOM. We recommend including this to enable easier tracking by your organization.</p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>delete:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sboms","delete"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8dda4cb-f500-4e9e-aafe-0a2914ceabfe"}],"id":"ecbd8713-6a0c-44ff-935d-7eea429954d7","description":"<p>This folder includes routes targeted at groups (more than 1) SBOM.</p>\n","_postman_id":"ecbd8713-6a0c-44ff-935d-7eea429954d7","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Upload (SBOM, VEX, etc)","item":[{"name":"Upload New File","id":"49341585-29c8-42d8-ab70-7d42c4e73f8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"base64BomContents\": \"<Base64 Contents of SBOM file>\",\n  \"source\": \"manual\",\n  \"relationship\": \"<first | third>\",\n  \"filename\": \"<fallback filename if Asset name cannot be determined>\",\n  \"metadata\": {\n      \"key\": \"value\"\n  },\n  // Disable SBOM enrichment on upload if needed\n//   \"enrichmentSourceOverride\": \"NONE\",\n  \"containerName\": \"\",\n  \"imageId\": \"\",\n  \"repoTags\": \"\",\n  \"labels\": [\"foo\", \"bar\"],\n  \"isActive\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/upload","description":"<p>Upload a new file (SBOM or VEX) for your organization. The file will be queued for processing (visible in the Manifest app in the Uploads tab). Max file upload size is currently set to 500Mb. Please contact our team if you need us to enable larger filesizes for your organization.</p>\n<p>For SBOMS, .json, .spdx, and .tv formats/types are accpeted. For VEX, .json is accepted.</p>\n<p>PUT body should be a JSON payload that includes the below data:</p>\n<ul>\n<li><p>base64BomContents: This should be the base64-encoded file data (e.g. your file contents encoded into a base64 string)</p>\n</li>\n<li><p>source: Optional, used for SBOMs, defaults to manual. This is used in the Manifest app to track the source of an SBOM (e.g. a manual upload vs one from your CICD pipeline). This may be set to any string; we use our own defaults if no value is set.</p>\n</li>\n<li><p>relationship: Optional, used for SBOMs, defaults to <code>third</code>. This is used in the Manifest app to track whether a given SBOM is first-party (built/supplied <em>by</em> your organization) or third-party (build/supplied <em>to</em> your organization). Accepted values are first or third.</p>\n</li>\n<li><p>metadata: Optional, attach key/value pairs of data to this SBOM and asset. This is experimental and being further extended in the future.</p>\n</li>\n<li><p>labels: Optional, attach labels to this asset. If the given label does not exist, a new one will be created.</p>\n</li>\n<li><p>isActive: Optional boolean, specify whether the created asset should be active or inactive.</p>\n</li>\n</ul>\n<p>A successful response will include some metadata about the SBOM. The _id in the response can be used to lookup additional information about the SBOM and its attached assets, components, vulnerabilities, products, &amp; more in other endpoints.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["upload"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9f28fc1d-0230-486c-bf7f-db44037e3117","name":"Successful SBOM Upload","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer your-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"base64BomContents\": \"<Base64 Contents of SBOM file>\",\r\n  \"source\": \"<github | circleci | manual>\",\r\n  \"relationship\": \"<first | third>\",\r\n  \"filename\": \"<fallback filename if Asset name cannot be determined>\"\r\n}"},"url":"{{apiUrl}}/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n  \"success\": \"true\",\r\n  \"errors\": [],\r\n  \"data\": [\r\n        {\r\n            \"organizationId\": \"<your organization id>\",\r\n            \"organizationAssetId\": null,\r\n            \"assetName\": null,\r\n            \"assetVersion\": null,\r\n            \"status\": \"initialized\",\r\n            \"isActive\": true,\r\n            \"isPublished\": true,\r\n            \"isDeleted\": false,\r\n            \"parentSbomId\": null,\r\n            \"parentAssetId\": null,\r\n            \"childrenSbomIds\": [],\r\n            \"enrichmentExecution\": null,\r\n            \"labelIds\": [],\r\n            \"assetLabelIds\": [],\r\n            \"productLabelIds\": [],\r\n            \"cveIds\": [],\r\n            \"countVulnerabilities\": null,\r\n            \"fileType\": \"SBOM\",\r\n            \"childrenOrganizationAssetIds\": [],\r\n            \"tokenId\": \"<id of token used for upload>\",\r\n            \"s3Key\": \"<uuid.json>\",\r\n            \"s3Bucket\": null,\r\n            \"locationIdentifier\": \"original\",\r\n            \"fileName\": \"incoming-file.json\",\r\n            \"source\": null,\r\n            \"format\": null,\r\n            \"formatVersion\": null,\r\n            \"relationshipToOrg\": \"third\",\r\n            \"uploadByVendor\": null,\r\n            \"vendorSourceSbom\": null,\r\n            \"context\": null,\r\n            \"attestation\": null,\r\n            \"whenInitialized\": \"2024-01-01T00:00:00.000Z\",\r\n            \"whenQueued\": null,\r\n            \"whenUploading\": null,\r\n            \"whenUploaded\": null,\r\n            \"whenConverting\": null,\r\n            \"whenConverted\": null,\r\n            \"whenProcessing\": null,\r\n            \"whenProcessed\": null,\r\n            \"conversionS3Bucket\": null,\r\n            \"conversionS3Key\": null,\r\n            \"convertedFromType\": null,\r\n            \"hasFlatHierarchyGraph\": false,\r\n            \"whenHierarchyGraphProcessing\": null,\r\n            \"whenHierarchyGraphProcessed\": null,\r\n            \"whenVulnerabilityScanStarted\": null,\r\n            \"whenVulnerabilityScanned\": null,\r\n            \"whenVulnerabilityCountStarted\": null,\r\n            \"whenVulnerabilityCounted\": null,\r\n            \"uploadErrors\": [],\r\n            \"processErrors\": [],\r\n            \"graphProcessErrors\": [],\r\n            \"derivedEcosytem\": null,\r\n            \"metadata\": null,\r\n            \"imageTags\": null,\r\n            \"imageId\": null,\r\n            \"containerName\": null,\r\n            \"repoTags\": null,\r\n            \"isRemoteOssOrigin\": null,\r\n            \"ossIngestId\": null,\r\n            \"productId\": null,\r\n            \"_id\": \"<some unique record ID here>\",\r\n            \"childSboms\": [],\r\n            \"dateCreated\": \"2024-01-01T00:00:00.000Z\",\r\n            \"dateModified\": \"2024-01-01T00:00:00.000Z\",\r\n            \"__v\": 0\r\n        }\r\n    ]\r\n}"}],"_postman_id":"49341585-29c8-42d8-ab70-7d42c4e73f8b"},{"name":"Upload Async - SBOM Initiate","id":"8b84924a-5cc3-44ef-8fa5-109302dfdc45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <your-api-token>","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"source\": \"manual\",\n  \"relationship\": \"<first | third>\",\n  \"filename\": \"<fallback filename if Asset name cannot be determined>\",\n  \"metadata\": {\n      \"key\": \"value\"\n  },\n    // Disable SBOM enrichment on upload if needed\n//   \"enrichmentSourceOverride\": \"none\",\n  \"containerName\": \"\",\n  \"imageId\": \"\",\n  \"repoTags\": \"\",\n  \"labels\": [\"foo\", \"bar\"],\n  \"isActive\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/upload/sbom/inititate","description":"<p>This is step 1 in a 3 step asynchronus SBOM upload process: initiate an asynchronous SBOM file upload. The response data will include an entry containing the new SBOM ID and the URL to upload the file to (using PUT).</p>\n<p>Valid file extensions are <code>.json</code>, <code>.spdx</code>, <code>.xml</code>, and <code>.tv</code></p>\n<p>The body of the POST request should be a JSON payload that can include the following:</p>\n<ul>\n<li><p>source: Optional, defaults to manual. This is used in the Manifest app to track the source of an SBOM (e.g. a manual upload vs one from your CICD pipeline). This may be set to any string; we use our own defaults if no value is set.</p>\n</li>\n<li><p>relationship: Optional, used for SBOMs, defaults to <code>third</code>. This is used in the Manifest app to track whether a given SBOM is first-party (built/supplied <em>by</em> your organization) or third-party (supplied <em>to</em> your organization). Accepted values are first or third.</p>\n</li>\n<li><p>metadata: Optional, attach key/value pairs of data to this SBOM and asset.</p>\n</li>\n<li><p>assetLabels: Optional, a list of label names to attach to this asset. If the given label does not exist, a new one will be created.</p>\n</li>\n<li><p>isActive: Optional boolean, specify whether the created asset should be active or inactive.</p>\n</li>\n</ul>\n<p>Once an asynchronous SBOM upload has been initiated, the file being uploaded can be sent directly to the <code>uploadUrl</code> in the response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -s \\\n  -X PUT \\\n  -T example_sbom.json \\\n  'https://mfst-object/url'\n\n</code></pre>\n<p>After the file is done uploading, the <code>/v1/upload/sbom/complete/:sbomId</code> endpoint must be called to start the SBOM processing.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["upload","sbom","inititate"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"92e92932-afdb-4735-a62c-8aa461449d62","name":"Successful SBOM Upload Initiate","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <your-api-token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"source\": \"<github | circleci | manual>\",\r\n  \"relationship\": \"<first | third>\",\r\n  \"filename\": \"<fallback filename if Asset name cannot be determined>\"\r\n  \"isActive\": true\r\n}"},"url":"{{apiUrl}}/upload/sbom/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n  \"success\": \"true\",\r\n  \"errors\": [],\r\n  \"data\": [\r\n    {\r\n      \"sbomId\": \"6800a8a8a8a8a8a8a8a8a8a8\",\r\n      \"uploadUrl\": \"https://mfst-object-url\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"8b84924a-5cc3-44ef-8fa5-109302dfdc45"},{"name":"Upload Async - SBOM Complete","id":"d2b5a222-5d9a-4ada-a01f-5ed3c9e4b807","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <your-api-token>","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"source\": \"manual\",\n  \"relationship\": \"<first | third>\",\n  \"filename\": \"<fallback filename if Asset name cannot be determined>\",\n  \"metadata\": {\n      \"key\": \"value\"\n  },\n  \"containerName\": \"\",\n  \"imageId\": \"\",\n  \"repoTags\": \"\",\n  \"labels\": [\"foo\", \"bar\"],\n  \"isActive\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/upload/sbom/complete/:sbomId","description":"<p>This is step 3 in a 3 step asynchronus upload process: mark an asynchronous SBOM file upload as completed and ready for processing. The SBOM ID specified in the path must be a valid SBOM ID belonging to the organization associated with the request.</p>\n<p>The API will verify that a file has been saved to the object storage and then kick odd the SBOM processing pipeline.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["upload","sbom","complete",":sbomId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>The ID of the sbom that is uploaded and ready for processing</p>\n","type":"text/plain"},"type":"any","value":"","key":"sbomId"}]}},"response":[{"id":"64ba699a-b95b-43fd-9786-b63b479bec5c","name":"Successful SBOM Upload Complete","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <your-api-token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"source\": \"<github | circleci | manual>\",\r\n  \"relationship\": \"<first | third>\",\r\n  \"filename\": \"<fallback filename if Asset name cannot be determined>\"\r\n  \"isActive\": true\r\n}"},"url":{"raw":"{{apiUrl}}/upload/sbom/complete/:sbomId","host":["{{apiUrl}}"],"path":["upload","sbom","complete",":sbomId"],"variable":[{"key":"sbomId","value":"","description":"The ID of the sbom that has been uploaded and is ready for processing"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n  \"success\": \"true\",\r\n  \"errors\": [],\r\n  \"data\": []\r\n}"}],"_postman_id":"d2b5a222-5d9a-4ada-a01f-5ed3c9e4b807"}],"id":"0c785ef2-f4ab-47ba-bcb8-d97b0c9e91e7","description":"<p>Currently, the same ingestion point is used for all filetypes. Use the /upload endpoint to upload your VEX, SBOM, and other files.</p>\n","_postman_id":"0c785ef2-f4ab-47ba-bcb8-d97b0c9e91e7","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Download","item":[{"name":"Download Files","id":"35eb0a32-a40b-4f89-b216-61da30bd310c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{apiUrl}}/download/bundle","description":"<p>Attempts to generate a download file for a given File Id(s)</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["download","bundle"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>required. Type Array of ids</p>\n","type":"text/plain"},"key":"fileIds","value":"[<id of each file to be retrieved>]"}],"variable":[]}},"response":[{"id":"67dc3de3-918d-4b7e-a40c-194bdfb7119f","name":"Successful link generation (JSON response)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/sbom/download/:sbomid","host":["{{apiUrl}}"],"path":["sbom","download",":sbomid"],"query":[{"key":"redirect","value":"boolean","description":"Optional. Immediately redirect to download link href.","type":"text","disabled":true}],"variable":[{"key":"sbomid","value":"6375b33cf4a45004db19eaab","description":"Required. Provide the ID of an SBOM to download."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Feb 2023 21:25:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1949"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"79d-9GS3Ii503cujQpYZUdOk9OmtQ88\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"url\": \"<download URL here>\",\n            \"sbomid\": \"<confirmation SBOM id>\"\n        }\n    ]\n}"}],"_postman_id":"35eb0a32-a40b-4f89-b216-61da30bd310c"}],"id":"8732b9c7-f18c-4bff-83a5-0f4d6679e3b7","description":"<p>This folder includes route for downloading files such as VEX and SBOM</p>\n","_postman_id":"8732b9c7-f18c-4bff-83a5-0f4d6679e3b7","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Vulnerability","item":[{"name":"Fetch Single Vulnerability","id":"2be5d8ce-b72d-4345-ae54-a139fb67625e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerability/CVE-1999-0002","description":"<p>Fetch general metadata for a single vulnerability based on cveId (exact match)</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerability","CVE-1999-0002"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2be5d8ce-b72d-4345-ae54-a139fb67625e"},{"name":"Generate a VEX Export","id":"fed9dbda-b13a-40a3-a504-ed0a7a69752f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"format","value":"openvex","description":"<p><code>csaf</code> or <code>openvex</code> (default). Format to generate the document in.</p>\n","type":"text"},{"key":"impactedProducts","value":"{\n  \"myaffectedproduct@1.2.3\": {\n    \"value\": \"MyAffectedProduct@1.2.3\",\n    \"label\": \"MyAffectedProduct@1.2.3\",\n    \"group\": \"Other Products\",\n    \"status\": \"affected\",\n    \"justification\": \"This is an action statement discussing how this product is affected by this vuln.\"\n  },\n  \"mynotaffectedproduct@1.2.3\": {\n    \"value\": \"MyNotAffectedProduct@1.2.3\",\n    \"label\": \"MyNotAffectedProduct@1.2.3\",\n    \"group\": \"Other Products\",\n    \"status\": \"not-affected\",\n    \"justification\": \"vulnerable_code_not_present\"\n  },\n  \"myfixedproduct@1.2.3\": {\n    \"value\": \"MyFixedProduct@1.2.3\",\n    \"label\": \"MyFixedProduct@1.2.3\",\n    \"group\": \"Other Products\",\n    \"status\": \"fixed\",\n    \"justification\": \"Example of optional notes discussing the surface area, how it was fixed, etc.\"\n  },\n  \"myproductunderinvestigation@1.2.3\": {\n    \"value\": \"MyProductUnderInvestigation@1.2.3\",\n    \"label\": \"MyProductUnderInvestigation@1.2.3\",\n    \"group\": \"Other Products\",\n    \"status\": \"under-investigation\",\n    \"justification\": \"Example of optional notes discussing the investigation and potential impact.\"\n  }\n}","description":"<p>JSON of impacted product data. This will include product names/versions, whether or not they're affected by this vulnerability, and/or any justifications, reasonings, or notes on such. See the value for an example.</p>\n","type":"text"}]},"url":"{{apiUrl}}/vulnerability/:vulnerabilityId/vex/:vexId","description":"<p>Generate Downloadable file for a specific vulnerability Id</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:sbom-and-vex</code> , <code>read:vulnerability</code> ,<code>read:component</code> , <code>read:asset</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerability",":vulnerabilityId","vex",":vexId"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"key":"","value":null}],"variable":[{"description":{"content":"<p>The vulnerability to generate VEX for - this is either a CVE ID (if on NIST NVD), or in absence of CVE may instead be RHSA, DSA, or similar. Example: <code>CVE-123-1234</code> or <code>DSA-1-123</code></p>\n","type":"text/plain"},"type":"any","value":"CVE (or equivalent e.g. RHSA, DSA, etc)","key":"vulnerabilityId"},{"description":{"content":"<p>Optionally specify the ID of a previously generated VEX document. This will return the requested document and ignore other inputs (e.g. no new document or data is generated).</p>\n","type":"text/plain"},"type":"any","value":"VEX document ID","key":"vexId"}]}},"response":[],"_postman_id":"fed9dbda-b13a-40a3-a504-ed0a7a69752f"},{"name":"List a Vulnerability's Impact","id":"05cb65ba-2642-46ef-bc12-8b41c8cf743f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerability/:vulnerabilityId/impact","description":"<p>Returns a list of all of an organization's impacted assets &amp; components from a given vulnerability (based on <code>cveId</code> field).</p>\n<p>Note that <code>cveId</code> is a legacy misnomer: In most cases, <code>cveId</code> will be a typical CVE ID matching <code>CVE-XXX-XXX</code> format, but when we ingest vulnerability data from other sources that isn't tied to a CVE ID, we instead use alternative unique identifiers (such as <code>DSA-XXX</code> or <code>GHSA-XX-XX</code>, etc). As a field, <code>cveId</code> is just intended to provide a unique identifier across all ingest vulnerability sources (separate from our <code>_id</code> field).</p>\n<p>Avaialble filters on this route:</p>\n<ul>\n<li><code>assetActive</code>: Array[boolean]. Only include assets that have an <code>isActive</code> value matching one of the values in the array (OR, not AND).</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code> ,<code>read:component</code> , <code>read:asset</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerability",":vulnerabilityId","impact"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Filter results based on one or more (applied additively) preset filters. This should be an array of objects with keys <code>field</code> and <code>value</code>.</p>\n","type":"text/plain"},"key":"filters","value":"[['field':'assetActive','value':[true]]]"}],"variable":[{"description":{"content":"<p><code>cveId</code> of a single vulnerability.</p>\n","type":"text/plain"},"type":"any","value":null,"key":"vulnerabilityId"}]}},"response":[],"_postman_id":"05cb65ba-2642-46ef-bc12-8b41c8cf743f"},{"name":"List a Vulnerability's ImpactCount","id":"ba8527d4-ec7c-485c-8027-345347a6f786","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerability/:vulnerabilityId/impactCount","description":"<p>Returns a list of all of an organization's impacted assets &amp; components from a given vulnerability (based on <code>cveId</code> field).</p>\n<p>Note that <code>cveId</code> is a legacy misnomer: In most cases, <code>cveId</code> will be a typical CVE ID matching <code>CVE-XXX-XXX</code> format, but when we ingest vulnerability data from other sources that isn't tied to a CVE ID, we instead use alternative unique identifiers (such as <code>DSA-XXX</code> or <code>GHSA-XX-XX</code>, etc). As a field, <code>cveId</code> is just intended to provide a unique identifier across all ingest vulnerability sources (separate from our <code>_id</code> field).</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code> ,<code>read:component</code> , <code>read:asset</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerability",":vulnerabilityId","impactCount"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p><code>cveId</code> of a single vulnerability.</p>\n","type":"text/plain"},"type":"any","value":null,"key":"vulnerabilityId"}]}},"response":[],"_postman_id":"ba8527d4-ec7c-485c-8027-345347a6f786"}],"id":"0e0e3139-92e2-4cae-b585-087b65128c0d","description":"<p>Routes describing a specific Vulnerability. These routes typically require a vulnerability ID (normally, a <code>cveId</code>) to be passed.</p>\n<p>StartFragment</p>\n<p>Note that <code>cveId</code> is a legacy misnomer: In most cases, <code>cveId</code> will be a typical CVE ID matching <code>CVE-XXX-XXX</code> format, but when we ingest vulnerability data from other sources that isn't tied to a CVE ID, we instead use alternative unique identifiers (such as <code>DSA-XXX</code> or <code>GHSA-XX-XX</code>, etc). As a field, <code>cveId</code> is just intended to provide a unique identifier across all ingest vulnerability sources (separate from our <code>_id</code> field).</p>\n<p>EndFragment</p>\n","_postman_id":"0e0e3139-92e2-4cae-b585-087b65128c0d","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Vulnerabilities","item":[{"name":"Fetch Vulnerabilities","id":"171c48d3-d5d6-4819-be10-a46fd0cb593f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerabilities","description":"<p>Fetch all vulnerabilities (paginated) catalogued in Manifest. This does not confine vulnerability results to those affecting an organization: to fetch all vulnerabilities for an organization, see <a href=\"https://api-docs.manifestcyber.com/#45031435-0ad7-48ea-b8e6-1cf753ae1fe9\">Fetch Vulnerabilities for OrganizationId</a>.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerabilities"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Comma-separated list of CVE ID's to confine results to those CVE's.</p>\n","type":"text/plain"},"key":"cveIds","value":"CVE-1999-0001"},{"disabled":true,"description":{"content":"<p>Optional, defaults to 1. Fetch a specifc page of results (based on limit)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Optional, defaults to 100. Limit results per page. Max per page is 1000.</p>\n","type":"text/plain"},"key":"limit","value":"100"}],"variable":[]}},"response":[],"_postman_id":"171c48d3-d5d6-4819-be10-a46fd0cb593f"},{"name":"Fetch Vulnerabilities for OrganizationId","id":"45031435-0ad7-48ea-b8e6-1cf753ae1fe9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerabilities/organization","description":"<p>Fetch all vulnerabilities (paginated) currently affecting a specific organization. Various optional parameters are included to further refine results.</p>\n<p>Response will further include a total count of organization Vulnerabilities that matched the request.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerabilities","organization"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Confine results to those published after (excluding) this date.</p>\n","type":"text/plain"},"key":"publishingDateStartTimestamp","value":"2022-11-01"},{"disabled":true,"description":{"content":"<p>Optional. Confine results to those published before (excluding) this date.</p>\n","type":"text/plain"},"key":"publishingDateEndTimestamp","value":"2022-12-01"},{"disabled":true,"description":{"content":"<p>Optional. Object of fields and order (1 asc, -1 desc) to sort based on. Fields may be any values returned as part of a Vulnerability.</p>\n","type":"text/plain"},"key":"sort","value":"{ cvss3BaseScore: -1, cvss2BaseScore: -1 }"},{"disabled":true,"description":{"content":"<p>Optional. Defaults to 0. Confine results to those with a CVSS3 Base Score above this value.</p>\n","type":"text/plain"},"key":"severityFloor","value":"0"},{"disabled":true,"description":{"content":"<p>Optional: Toggle if the assetId is an sbomId</p>\n","type":"text/plain"},"key":"useSbomId","value":"false"}],"variable":[]}},"response":[{"id":"bb0e63cf-c88d-4b7f-a56a-e7cb205ae51c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/vulnerabilities/organization","host":["{{apiUrl}}"],"path":["vulnerabilities","organization"],"query":[{"key":"page","value":"1","description":"Optional, defaults to 1. Fetch a specifc page of results (based on limit)","disabled":true},{"key":"limit","value":"1","description":"Optional, defaults to 100. Limit results per page. Max per page is 1000.","disabled":true},{"key":"confineToAsset","value":"some-asset-id","description":"Optional. Confine results to those affecting only a specific Asset ID","disabled":true},{"key":"publishingDateStartTimestamp","value":"2022-11-01","description":"Optional. Confine results to those published after (excluding) this date.","disabled":true},{"key":"publishingDateEndTimestamp","value":"2022-12-01","description":"Optional. Confine results to those published before (excluding) this date.","disabled":true},{"key":"sort","value":"{ cvss3BaseScore: -1, cvss2BaseScore: -1 }","description":"Optional. Object of fields and order (1 asc, -1 desc) to sort based on. Fields may be any values returned as part of a Vulnerability.","type":"text","disabled":true},{"key":"severityFloor","value":"0","description":"Optional. Defaults to 0. Confine results to those with a CVSS3 Base Score above this value.","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Feb 2023 06:06:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1252"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"4e4-YmCe56Duy6QHL48qXGdW7L7uTnU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"queryInfo\": {\n        \"nPage\": 1,\n        \"nLimit\": 1,\n        \"context\": \"\",\n        \"countOrganizationAssets\": 247,\n        \"countNullComponentVulnerabilities\": 0,\n        \"countVulnerabilities\": 3529\n    },\n    \"data\": [\n        {\n            \"_id\": \"63702eae260542146b10f8fb\",\n            \"cveId\": \"CVE-2022-30123\",\n            \"aliasIds\": [],\n            \"aliases\": [\n                \"CVE-2022-30123\",\n                \"GHSA-wq4h-7r42-5hrr\"\n            ],\n            \"credits\": [],\n            \"cvss2BaseScore\": null,\n            \"cvss2BaseSeverity\": null,\n            \"cvss2Data\": {\n                \"_id\": \"63702ead6e491db34df6b394\"\n            },\n            \"cvss3BaseScore\": 10,\n            \"cvss3BaseSeverity\": \"CRITICAL\",\n            \"cvss3Data\": {\n                \"exploitabilityScore\": 3.9,\n                \"impactScore\": 6,\n                \"_id\": \"63e4b07d35eb8f4b22000ce9\"\n            },\n            \"dateCreated\": \"2022-11-12T23:39:25.518Z\",\n            \"dateModified\": \"2023-02-09T09:00:12.369Z\",\n            \"description\": \"Possible shell escape sequence injection vulnerability in Rack\",\n            \"epssPercentile\": 0.27449,\n            \"epssScore\": 0.00885,\n            \"publishDate\": \"2022-05-27T16:36:51.000Z\",\n            \"references\": [\n                {\n                    \"type\": \"https://discuss.rubyonrails.org/t/cve-2022-30123-possible-shell-escape-sequence-injection-vulnerability-in-rack/80728\",\n                    \"url\": \"https://discuss.rubyonrails.org/t/cve-2022-30123-possible-shell-escape-sequence-injection-vulnerability-in-rack/80728\",\n                    \"_id\": \"63e4b07d35eb8f4b22000ce7\"\n                },\n                {\n                    \"type\": \"ADVISORY\",\n                    \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2022-30123\",\n                    \"_id\": \"63e4b07d35eb8f4b22000ce8\"\n                }\n            ],\n            \"cvssScore\": 10,\n            \"countAffectedAssets\": 9\n        }\n    ]\n}"}],"_postman_id":"45031435-0ad7-48ea-b8e6-1cf753ae1fe9"},{"name":"Fetch Vulnerabilities for Asset","id":"b59cd383-52aa-47f8-bfa8-509efa156d06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerabilities/asset","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code>, <code>read:asset</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerabilities","asset"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Id of the asset</p>\n","type":"text/plain"},"key":"assetId","value":"64e71cc49e54b0dadfd377d0"},{"disabled":true,"description":{"content":"<p>Page number to fetch</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Max number of results per page (capped at 100)</p>\n","type":"text/plain"},"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"02a72b82-073b-4f2a-9d94-13ff1d7ce18a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/vulnerabilities/asset","host":["{{apiUrl}}"],"path":["vulnerabilities","asset"],"query":[{"key":"assetId","value":"653f9b31ffeeddccbbaa9988","description":"Id of the asset","type":"text","disabled":true},{"key":"page","value":"1","description":"Page number to fetch","type":"text","disabled":true},{"key":"limit","value":"20","description":"Max number of results per page (capped at 100)","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"queryInfo\": {\n        \"nPage\": 1,\n        \"total\": 2,\n        \"countVulnerabilities\": 2,\n        \"nLimit\": 20,\n        \"filters\": \"\"\n    },\n    \"data\": [\n        {\n            \"_id\": \"636f5f8a260542146bc9feab\",\n            \"cveId\": \"CVE-2022-30065\",\n            \"aliasIds\": [],\n            \"aliases\": [\n                \"CVE-2022-30065\"\n            ],\n            \"cvss2BaseScore\": 6.8,\n            \"cvss2BaseSeverity\": \"MEDIUM\",\n            \"cvss2Data\": {\n                \"version\": 2,\n                \"vectorString\": \"AV:N/AC:M/Au:N/C:P/I:P/A:P\",\n                \"accessVector\": \"NETWORK\",\n                \"accessComplexity\": \"MEDIUM\",\n                \"authentication\": \"NONE\",\n                \"confidentialityImpact\": \"PARTIAL\",\n                \"integrityImpact\": \"PARTIAL\",\n                \"availabilityImpact\": \"PARTIAL\",\n                \"baseScore\": 6.8,\n            },\n            \"cvss3BaseScore\": 7.8,\n            \"cvss3BaseSeverity\": \"HIGH\",\n            \"cvss3Data\": {\n                \"version\": \"3.1\",\n                \"vectorString\": \"CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H\",\n                \"attackComplexity\": \"LOW\",\n                \"privilegesRequired\": \"NONE\",\n                \"userInteraction\": \"REQUIRED\",\n                \"scope\": \"UNCHANGED\",\n                \"confidentialityImpact\": \"HIGH\",\n                \"integrityImpact\": \"HIGH\",\n                \"availabilityImpact\": \"HIGH\",\n                \"baseScore\": 7.8,\n                \"baseSeverity\": \"HIGH\",\n            },\n            \"dateCreated\": \"2022-11-12T08:55:38.919Z\",\n            \"dateModified\": \"2025-10-31T07:46:27.009Z\",\n            \"description\": \"A use-after-free in Busybox 1.35-x's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the copyvar function.\",\n            \"epssPercentile\": 0.68661,\n            \"epssScore\": 0.00603,\n            \"publishDate\": \"2022-05-18T15:15:10.000Z\",\n            \"references\": [\n                {\n                    \"type\": \"REPORT\",\n                    \"url\": \"https://bugs.busybox.net/show_bug.cgi?id=14781\",\n                    \"_id\": \"68d249acb3269a3281243aae\"\n                },\n                {\n                    \"type\": \"ADVISORY\",\n                    \"url\": \"https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf\",\n                    \"_id\": \"68d249acb3269a3281243aaf\"\n                },\n                {\n                    \"type\": \"ADVISORY\",\n                    \"url\": \"https://security.alpinelinux.org/vuln/CVE-2022-30065\",\n                    \"_id\": \"68d249acb3269a3281243ab0\"\n                },\n                {\n                    \"type\": \"ADVISORY\",\n                    \"url\": \"https://security-tracker.debian.org/tracker/CVE-2022-30065\",\n                    \"_id\": \"68d249acb3269a3281243ab1\"\n                },\n                {\n                    \"type\": \"WEB\",\n                    \"url\": \"https://bugs.busybox.net/show_bug.cgi?id=14781\",\n                    \"_id\": \"68887683ff539ff4fb611560\"\n                },\n                {\n                    \"type\": \"WEB\",\n                    \"url\": \"https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf\",\n                    \"_id\": \"68887683ff539ff4fb611561\"\n                },\n                {\n                    \"type\": \"link\",\n                    \"url\": \"https://bugs.busybox.net/show_bug.cgi?id=14781\",\n                    \"_id\": \"67404da7b00096b4ebdf715f\"\n                },\n                {\n                    \"type\": \"link\",\n                    \"url\": \"https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf\",\n                    \"_id\": \"67404da7b00096b4ebdf7160\"\n                },\n                {\n                    \"type\": \"ADVISORY\",\n                    \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2022-30065\",\n                    \"_id\": \"67404da7b00096b4ebdf7163\"\n                }\n            ],\n            \"recommendedAction\": \"monitor\",\n            \"listingLastModified\": \"2024-11-21T07:02:09.397Z\",\n            \"status\": \"PUBLISHED\",\n            \"priorityScore\": 318487,\n            \"preferredScore\": 7.8,\n            \"cvssData\": [\n                {\n                    \"version\": \"3.1\",\n                    \"vector\": \"CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H\",\n                    \"score\": 7.8,\n                    \"severity\": \"HIGH\",\n                    \"source\": \"NVD\",\n                },\n                {\n                    \"version\": \"2.0\",\n                    \"vector\": \"AV:N/AC:M/Au:N/C:P/I:P/A:P\",\n                    \"score\": 6.8,\n                    \"severity\": \"MEDIUM\",\n                    \"source\": \"NVD\",\n                },\n                {\n                    \"version\": \"3.1\",\n                    \"vector\": \"CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H\",\n                    \"score\": 7.8,\n                    \"severity\": \"HIGH\",\n                    \"source\": \"OSV\",\n                }\n            ],\n            \"preferredSeverity\": \"HIGH\",\n            \"mitigation\": [\n                {\n                    \"pkg:apk/alpine/busybox?arch=source\": {\n                        \"fixedVersions\": [\n                            \"1.32.1-r9\",\n                            \"1.33.0-r8\",\n                            \"1.34.0-r6\",\n                            \"1.35.0-r15\",\n                            \"1.35.0-r17\"\n                        ],\n                        \"lastAffectedVersions\": []\n                    },\n                    \"pkg:deb/debian/busybox?arch=source\": {\n                        \"fixedVersions\": [\n                            \"1:1.36.1-1\"\n                        ],\n                        \"lastAffectedVersions\": []\n                    }\n                }\n            ],\n            \"osvMatchingChecksum\": {\n                \"CVE-2022-30065\": \"7e55c6693b7b8792fb1816fafb4ce0718ed79e09372181b205903b0d5e0e2adb\"\n            },\n            \"sources\": [\n                \"OSV\"\n            ],\n            \"componentVulnerabilities\": [\n                {\n                    \"_id\": \"689a17e97c527631d6780016\",\n                    \"cveId\": \"CVE-2022-30065\",\n                    \"organizationId\": \"653f9b2e1a2b3c4d5e6f7a8b\",\n                    \"organizationComponentId\": \"657f389bc25f3e9593559dba\",\n                    \"dateCreated\": \"2025-08-11T16:18:49.750Z\",\n                    \"dateModified\": \"2025-10-24T08:00:24.121Z\",\n                    \"datePublished\": null,\n                    \"epssScore\": 0.00603,\n                    \"explanations\": [\n                        \"cpe:2.3:a:busybox:busybox:1.35.0:*:*:*:*:*:*:*: Version is an exact match to semver 1.35.0, so match is positive. \"\n                    ],\n                    \"jobNames\": [\n                        \"job-vulnerability-match\"\n                    ],\n                    \"packageUrl\": null,\n                    \"packageUrlNoVersion\": \"busybox\",\n                    \"packageVersion\": \"1.35.0\",\n                    \"preferredScore\": null,\n                    \"preferredSeverity\": null,\n                    \"priorityScore\": 318487,\n                    \"recommendedAction\": \"monitor\",\n                    \"severityLabel\": null,\n                    \"severityScore\": null,\n                    \"sourceLinks\": [\n                        \"https://nvd.nist.gov/vuln/detail/CVE-2022-30065\"\n                    ],\n                    \"sources\": [\n                        \"NVD\"\n                    ],\n                    \"vulnerabilityId\": null,\n                    \"assetComponents\": [\n                        {\n                            \"_id\": \"653f9b322468ace13579bdf0\",\n                            \"organizationComponentId\": \"657f389bc25f3e9593559dba\",\n                            \"organizationId\": \"653f9b2e1a2b3c4d5e6f7a8b\",\n                            \"organizationAssetId\": \"653f9b31ffeeddccbbaa9988\",\n                            \"commitVersionHash\": null,\n                            \"componentFullyQualifiedName\": \"busybox\",\n                            \"componentPackageUrlNoVersion\": \"busybox\",\n                            \"componentPackageVersion\": \"1.35.0\",\n                            \"countVulnerabilities\": {\n                                \"careAbout\": 0,\n                                \"critical\": 1,\n                                \"high\": 2,\n                                \"medium\": 0,\n                                \"low\": 1,\n                                \"info\": 0,\n                                \"total\": 4,\n                                \"mitigate\": 2,\n                                \"monitor\": 1,\n                                \"accept\": 1,\n                                \"inKEV\": 0,\n                                \"inKEVPreviously\": 0,\n                            },\n                            \"cpes\": [\n                                \"cpe:2.3:a:busybox:busybox:1.35.0:*:*:*:*:*:*:*\",\n                                \"cpe:2.3:a:busybox:busybox:*:*:*:*:*:*:*:*\"\n                            ],\n                            \"cveIds\": {},\n                            \"dateCreated\": \"2025-08-11T16:18:49.054Z\",\n                            \"dateModified\": \"2025-09-30T18:44:03.957Z\",\n                            \"ecosystem\": \"\",\n                            \"firstCpeParts\": {\n                                \"productPart\": \"a\",\n                                \"productVendor\": \"busybox\",\n                                \"productName\": \"busybox\",\n                                \"productVersion\": \"1.35.0\",\n                                \"productUpdate\": \"*\",\n                                \"productLanguage\": \"*\",\n                                \"productEdition\": \"*\",\n                                \"productSwEdition\": \"*\",\n                                \"productTargetSw\": \"*\",\n                                \"productOther\": \"*\",\n                                \"validation\": {\n                                    \"isValid\": true,\n                                    \"validationErrors\": [],\n                                    \"components\": [\n                                        \"cpe\",\n                                        \"2.3\",\n                                        \"a\",\n                                        \"busybox\",\n                                        \"busybox\",\n                                        \"1.35.0\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\"\n                                    ]\n                                },\n                            },\n                            \"fullyQualifiedName\": \"busybox\",\n                            \"hasNamespace\": false,\n                            \"isVulnerable\": true,\n                            \"licenses\": [],\n                            \"mimeType\": null,\n                            \"name\": \"busybox\",\n                            \"packageSource\": null,\n                            \"packageSourceVersion\": null,\n                            \"packageUrlNoVersion\": \"busybox\",\n                            \"packageVersion\": null,\n                            \"purlParts\": null,\n                            \"resolvedCpes\": null,\n                            \"riskScore\": \"low\",\n                            \"supplier\": null,\n                            \"vendorName\": []\n                        }\n                    ]\n                }\n            ],\n            \"recommendationScore\": 2,\n            \"triageScore\": 7,\n            \"severity\": \"HIGH\",\n            \"cvssScore\": 7.8,\n            \"affectedComponents\": [\n                {\n                    \"id\": \"653f9b322468ace13579bdf0\",\n                    \"affectedComponentName\": \"busybox@1.35.0\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"6809e199e97afeb5ff06c4c8\",\n            \"cveId\": \"CVE-2025-46394\",\n            \"aliasIds\": [],\n            \"aliases\": [\n                \"CVE-2025-46394\"\n            ],\n            \"cvss2BaseScore\": null,\n            \"cvss2BaseSeverity\": null,\n            \"cvss2Data\": {},\n            \"cvss3BaseScore\": 3.3,\n            \"cvss3BaseSeverity\": \"LOW\",\n            \"cvss3Data\": {\n                \"version\": \"3.1\",\n                \"vectorString\": \"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N\",\n                \"attackComplexity\": \"LOW\",\n                \"privilegesRequired\": \"LOW\",\n                \"userInteraction\": \"NONE\",\n                \"scope\": \"UNCHANGED\",\n                \"confidentialityImpact\": \"NONE\",\n                \"integrityImpact\": \"LOW\",\n                \"availabilityImpact\": \"NONE\",\n                \"baseScore\": 3.3,\n                \"baseSeverity\": \"LOW\",\n            },\n            \"cvssData\": [\n                {\n                    \"version\": \"3.1\",\n                    \"vector\": \"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N\",\n                    \"score\": 3.3,\n                    \"severity\": \"LOW\",\n                    \"source\": \"NVD\",\n                    \"_id\": \"68d4e8a530bae81bc16754f6\"\n                }\n            ],\n            \"cvssDataAddedTimestamp\": \"2025-09-22T20:50:35.320Z\",\n            \"dateCreated\": \"2025-04-24T07:00:40.933Z\",\n            \"dateModified\": \"2025-10-31T07:52:21.154Z\",\n            \"description\": \"In tar in BusyBox through 1.37.0, a TAR archive can have filenames hidden from a listing through the use of terminal escape sequences.;En tar en BusyBox hasta 1.37.0, un archivo TAR puede tener nombres de archivo ocultos en una lista mediante el uso de secuencias de escape de terminal.\",\n            \"epssPercentile\": 0.01907,\n            \"epssScore\": 0.00015,\n            \"kevData\": {},\n            \"lastCheckedMitigation\": null,\n            \"listingLastModified\": \"2025-09-24T14:38:22.127Z\",\n            \"mitigation\": [\n                {\n                    \"pkg:deb/debian/busybox?arch=source\": {\n                        \"fixedVersions\": [],\n                        \"lastAffectedVersions\": []\n                    }\n                }\n            ],\n            \"mitigationNotes\": [],\n            \"nvdMatchingChecksum\": \"a3696e021d9e8dde08159f1369aad0578e46a39f86301c4b2fa63077b1f9928b\",\n            \"osvMatchingChecksum\": {\n                \"CVE-2025-46394\": \"ac11e591d895e4930fc5970df9c126c663cd20cc9f4f09351d645ed46704937c\"\n            },\n            \"preferredScore\": 3.3,\n            \"preferredSeverity\": \"LOW\",\n            \"priorityScore\": 213320,\n            \"publishDate\": \"2025-04-23T16:15:48.713Z\",\n            \"recommendedAction\": \"accept\",\n            \"references\": [\n                {\n                    \"type\": \"link\",\n                    \"url\": \"https://bugs.busybox.net/show_bug.cgi?id=16018\",\n                    \"_id\": \"68d4e8a530bae81bc16754f7\"\n                },\n                {\n                    \"type\": \"link\",\n                    \"url\": \"https://www.busybox.net\",\n                    \"_id\": \"68d4e8a530bae81bc16754f8\"\n                },\n                {\n                    \"type\": \"link\",\n                    \"url\": \"https://www.busybox.net/downloads/\",\n                    \"_id\": \"68d4e8a530bae81bc16754f9\"\n                },\n                {\n                    \"type\": \"link\",\n                    \"url\": \"http://www.openwall.com/lists/oss-security/2025/04/23/5\",\n                    \"_id\": \"68d4e8a530bae81bc16754fa\"\n                },\n                {\n                    \"type\": \"link\",\n                    \"url\": \"http://www.openwall.com/lists/oss-security/2025/04/24/3\",\n                    \"_id\": \"68d4e8a530bae81bc16754fb\"\n                },\n                {\n                    \"type\": \"ADVISORY\",\n                    \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2025-46394\",\n                    \"_id\": \"68d4e8a530bae81bc16754fc\"\n                }\n            ],\n            \"sourceIdentifier\": null,\n            \"sources\": [\n                \"OSV\",\n                \"NVD\"\n            ],\n            \"status\": \"PUBLISHED\",\n            \"ticketIds\": null,\n            \"componentVulnerabilities\": [\n                {\n                    \"_id\": \"653f9b322468ace13579bdf0\",\n                    \"cveId\": \"CVE-2025-46394\",\n                    \"organizationComponentId\": \"653f9b33abc123def4567890\",\n                    \"organizationId\": \"653f9b2e1a2b3c4d5e6f7a8b\",\n                    \"dateCreated\": \"2025-09-25T08:06:49.251Z\",\n                    \"dateModified\": \"2025-10-31T07:52:27.915Z\",\n                    \"datePublished\": null,\n                    \"epssScore\": 0.00015,\n                    \"explanations\": [\n                        \"cpe:2.3:a:busybox:busybox:*:*:*:*:*:*:*:*: No floor to match against was specified. 1.35.0 is therefore greater than or equal to \\\"nothing\\\". Version 1.35.0 is less than or equal to 1.37.0. Version is between the range of \\\"anything\\\" to 1.37.0, so match is positive.\"\n                    ],\n                    \"jobNames\": [\n                        \"job-daily-vuln-match\"\n                    ],\n                    \"packageUrl\": null,\n                    \"packageUrlNoVersion\": \"busybox\",\n                    \"packageVersion\": \"1.35.0\",\n                    \"preferredScore\": null,\n                    \"preferredSeverity\": null,\n                    \"priorityScore\": 213320,\n                    \"recommendedAction\": \"accept\",\n                    \"severityLabel\": null,\n                    \"severityScore\": null,\n                    \"sourceLinks\": [\n                        \"https://nvd.nist.gov/vuln/detail/CVE-2025-46394\"\n                    ],\n                    \"sources\": [\n                        \"NVD\"\n                    ],\n                    \"vulnerabilityId\": null,\n                    \"assetComponents\": [\n                        {\n                            \"_id\": \"689a17e97c527631d677feaf\",\n                            \"organizationComponentId\": \"653f9b33abc123def4567890\",\n                            \"organizationId\": \"653f9b2e1a2b3c4d5e6f7a8b\",\n                            \"organizationAssetId\": \"653f9b31ffeeddccbbaa9988\",\n                            \"commitVersionHash\": null,\n                            \"componentFullyQualifiedName\": \"busybox\",\n                            \"componentPackageUrlNoVersion\": \"busybox\",\n                            \"componentPackageVersion\": \"1.35.0\",\n                            \"countVulnerabilities\": {\n                                \"careAbout\": 0,\n                                \"critical\": 1,\n                                \"high\": 2,\n                                \"medium\": 0,\n                                \"low\": 1,\n                                \"info\": 0,\n                                \"total\": 4,\n                                \"mitigate\": 2,\n                                \"monitor\": 1,\n                                \"accept\": 1,\n                                \"inKEV\": 0,\n                                \"inKEVPreviously\": 0,\n                            },\n                            \"cpes\": [\n                                \"cpe:2.3:a:busybox:busybox:1.35.0:*:*:*:*:*:*:*\",\n                                \"cpe:2.3:a:busybox:busybox:*:*:*:*:*:*:*:*\"\n                            ],\n                            \"cveIds\": {},\n                            \"dateCreated\": \"2025-08-11T16:18:49.054Z\",\n                            \"dateModified\": \"2025-09-30T18:44:03.957Z\",\n                            \"ecosystem\": \"\",\n                            \"firstCpeParts\": {\n                                \"productPart\": \"a\",\n                                \"productVendor\": \"busybox\",\n                                \"productName\": \"busybox\",\n                                \"productVersion\": \"1.35.0\",\n                                \"productUpdate\": \"*\",\n                                \"productLanguage\": \"*\",\n                                \"productEdition\": \"*\",\n                                \"productSwEdition\": \"*\",\n                                \"productTargetSw\": \"*\",\n                                \"productOther\": \"*\",\n                                \"validation\": {\n                                    \"isValid\": true,\n                                    \"validationErrors\": [],\n                                    \"components\": [\n                                        \"cpe\",\n                                        \"2.3\",\n                                        \"a\",\n                                        \"busybox\",\n                                        \"busybox\",\n                                        \"1.35.0\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\"\n                                    ]\n                                },\n                            },\n                            \"fullyQualifiedName\": \"busybox\",\n                            \"hasNamespace\": false,\n                            \"isVulnerable\": true,\n                            \"licenses\": [],\n                            \"mimeType\": null,\n                            \"name\": \"busybox\",\n                            \"packageSource\": null,\n                            \"packageSourceVersion\": null,\n                            \"packageUrlNoVersion\": \"busybox\",\n                            \"packageVersion\": null,\n                            \"purlParts\": null,\n                            \"resolvedCpes\": null,\n                            \"riskScore\": \"low\",\n                            \"supplier\": null,\n                            \"vendorName\": []\n                        }\n                    ]\n                },\n                {\n                    \"_id\": \"653f9b301234abcd56789ef0\",\n                    \"cveId\": \"CVE-2025-46394\",\n                    \"organizationComponentId\": \"653f9b2f9d8c7b6a5e4f3d2c\",\n                    \"organizationId\": \"653f9b2e1a2b3c4d5e6f7a8b\",\n                    \"dateCreated\": \"2025-09-25T08:06:49.251Z\",\n                    \"dateModified\": \"2025-10-31T07:52:27.915Z\",\n                    \"datePublished\": null,\n                    \"epssScore\": 0.00015,\n                    \"explanations\": [\n                        \"cpe:2.3:a:busybox:busybox:*:*:*:*:*:*:*:*: No floor to match against was specified. 1.35.0 is therefore greater than or equal to \\\"nothing\\\". Alphabetically, version 1.35.0-r29 is less than or equal to 1.37.0. Version is between the range of \\\"anything\\\" to 1.37.0, so match is positive.\"\n                    ],\n                    \"jobNames\": [\n                        \"job-daily-vuln-match\"\n                    ],\n                    \"packageUrl\": null,\n                    \"packageUrlNoVersion\": \"pkg:apk/alpine/busybox\",\n                    \"packageVersion\": \"1.35.0-r29\",\n                    \"preferredScore\": null,\n                    \"preferredSeverity\": null,\n                    \"priorityScore\": 213320,\n                    \"recommendedAction\": \"accept\",\n                    \"severityLabel\": null,\n                    \"severityScore\": null,\n                    \"sourceLinks\": [\n                        \"https://nvd.nist.gov/vuln/detail/CVE-2025-46394\"\n                    ],\n                    \"sources\": [\n                        \"NVD\"\n                    ],\n                    \"vulnerabilityId\": null,\n                    \"assetComponents\": [\n                        {\n                            \"_id\": \"653f9b2d8f7b6a1b2d3c4e6f\",\n                            \"organizationComponentId\": \"653f9b2f9d8c7b6a5e4f3d2c\",\n                            \"organizationId\": \"653f9b2e1a2b3c4d5e6f7a8b\",\n                            \"organizationAssetId\": \"653f9b31ffeeddccbbaa9988\",\n                            \"commitVersionHash\": null,\n                            \"componentFullyQualifiedName\": \"busybox\",\n                            \"componentPackageUrlNoVersion\": \"pkg:apk/alpine/busybox\",\n                            \"componentPackageVersion\": \"1.35.0-r29\",\n                            \"countVulnerabilities\": {\n                                \"careAbout\": 0,\n                                \"critical\": 0,\n                                \"high\": 0,\n                                \"medium\": 0,\n                                \"low\": 1,\n                                \"info\": 0,\n                                \"total\": 1,\n                                \"mitigate\": 0,\n                                \"monitor\": 0,\n                                \"accept\": 1,\n                                \"inKEV\": 0,\n                                \"inKEVPreviously\": 0,\n                                \"_id\": \"68dc24f348b0145180803c74\"\n                            },\n                            \"cpes\": [\n                                \"cpe:2.3:a:busybox:busybox:1.35.0-r29:*:*:*:*:*:*:*\",\n                                \"cpe:2.3:a:busybox:busybox:*:*:*:*:*:*:*:*\"\n                            ],\n                            \"cveIds\": {},\n                            \"dateCreated\": \"2025-08-11T16:18:49.054Z\",\n                            \"dateModified\": \"2025-09-30T18:44:03.970Z\",\n                            \"ecosystem\": \"apk\",\n                            \"firstCpeParts\": {\n                                \"productPart\": \"a\",\n                                \"productVendor\": \"busybox\",\n                                \"productName\": \"busybox\",\n                                \"productVersion\": \"1.35.0-r29\",\n                                \"productUpdate\": \"*\",\n                                \"productLanguage\": \"*\",\n                                \"productEdition\": \"*\",\n                                \"productSwEdition\": \"*\",\n                                \"productTargetSw\": \"*\",\n                                \"productOther\": \"*\",\n                                \"validation\": {\n                                    \"isValid\": true,\n                                    \"validationErrors\": [],\n                                    \"components\": [\n                                        \"cpe\",\n                                        \"2.3\",\n                                        \"a\",\n                                        \"busybox\",\n                                        \"busybox\",\n                                        \"1.35.0-r29\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\",\n                                        \"*\"\n                                    ]\n                                },\n                            },\n                            \"fullyQualifiedName\": \"busybox\",\n                            \"hasNamespace\": true,\n                            \"isVulnerable\": true,\n                            \"licenses\": [\n                                {\n                                    \"id\": \"GPL-2.0-only\",\n                                }\n                            ],\n                            \"mimeType\": null,\n                            \"name\": \"busybox\",\n                            \"packageSource\": null,\n                            \"packageSourceVersion\": null,\n                            \"packageUrlNoVersion\": \"pkg:apk/alpine/busybox\",\n                            \"packageVersion\": null,\n                            \"purlParts\": {\n                                \"ecosystem\": \"apk\",\n                                \"namespace\": \"alpine\",\n                                \"name\": \"busybox\",\n                                \"version\": \"1.35.0-r29\",\n                                \"subpath\": \"\",\n                                \"distro\": null,\n                                \"distroVersion\": null,\n                                \"source\": null,\n                                \"sourceVersion\": null,\n                                \"epoch\": null,\n                                \"qualifiers\": {\n                                    \"arch\": \"aarch64\",\n                                    \"upstream\": \"busybox\",\n                                    \"distro\": \"alpine-3.17.0\"\n                                },\n                                \"rawPurl\": \"pkg:apk/alpine/busybox@1.35.0-r29?arch=aarch64&upstream=busybox&distro=alpine-3.17.0\",\n                                \"vendorName\": \"alpine\",\n                                \"vendorNameAliases\": [],\n                                \"validation\": {\n                                    \"isValid\": true,\n                                    \"validationErrors\": []\n                                },\n                            },\n                            \"resolvedCpes\": null,\n                            \"riskScore\": \"low\",\n                            \"supplier\": null,\n                            \"vendorName\": [\n                                \"alpine\"\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"recommendationScore\": 1,\n            \"triageScore\": 7,\n            \"severity\": \"LOW\",\n            \"cvssScore\": 3.3,\n            \"affectedComponents\": [\n                {\n                    \"id\": \"653f9b322468ace13579bdf0\",\n                    \"affectedComponentName\": \"busybox@1.35.0\"\n                },\n                {\n                    \"id\": \"653f9b2d8f7b6a1b2d3c4e6f\",\n                    \"affectedComponentName\": \"pkg:apk/alpine/busybox@1.35.0-r29\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"b59cd383-52aa-47f8-bfa8-509efa156d06"},{"name":"Fetch Vulnerabilities for Single Component","id":"edfc36b7-40ba-4936-b8b2-3e90a5b3e3d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerabilities/component/:componentId","description":"<p>Fetch all vulnerabilities (paginated) currently affecting a specific component. May optionally apply a sort based on specific fields (see <code>sort</code> parameter below).</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code>, <code>read:component</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerabilities","component",":componentId"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional, defaults to 1. Fetch a specifc page of results (based on limit)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Optional, defaults to 100. Limit results per page. Max per page is 1000.</p>\n","type":"text/plain"},"key":"limit","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Object of fields and order (1 asc, -1 desc) to sort based on. Available fields may be <code>packageUrlNoVersion</code>, <code>packageVersion</code>, <code>cveId</code>, <code>severityLabel</code>, <code>severityScore</code>, <code>epssScore</code>, or <code>datePublished</code>.</p>\n","type":"text/plain"},"key":"sort","value":"{ epssScore: -1 }"}],"variable":[{"type":"any","value":"component-id","key":"componentId"}]}},"response":[{"id":"c09499d6-94a9-42b3-8168-d863d3a34b43","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiUrl}}/vulnerabilities/organization","host":["{{apiUrl}}"],"path":["vulnerabilities","organization"],"query":[{"key":"page","value":"1","description":"Optional, defaults to 1. Fetch a specifc page of results (based on limit)","disabled":true},{"key":"limit","value":"1","description":"Optional, defaults to 100. Limit results per page. Max per page is 1000.","disabled":true},{"key":"confineToAsset","value":"some-asset-id","description":"Optional. Confine results to those affecting only a specific Asset ID","disabled":true},{"key":"publishingDateStartTimestamp","value":"2022-11-01","description":"Optional. Confine results to those published after (excluding) this date.","disabled":true},{"key":"publishingDateEndTimestamp","value":"2022-12-01","description":"Optional. Confine results to those published before (excluding) this date.","disabled":true},{"key":"sort","value":"{ cvss3BaseScore: -1, cvss2BaseScore: -1 }","description":"Optional. Object of fields and order (1 asc, -1 desc) to sort based on. Fields may be any values returned as part of a Vulnerability.","type":"text","disabled":true},{"key":"severityFloor","value":"0","description":"Optional. Defaults to 0. Confine results to those with a CVSS3 Base Score above this value.","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Feb 2023 06:06:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1252"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"4e4-YmCe56Duy6QHL48qXGdW7L7uTnU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"queryInfo\": {\n        \"nPage\": 1,\n        \"nLimit\": 1,\n        \"context\": \"\",\n        \"countOrganizationAssets\": 247,\n        \"countNullComponentVulnerabilities\": 0,\n        \"countVulnerabilities\": 3529\n    },\n    \"data\": [\n        {\n            \"_id\": \"63702eae260542146b10f8fb\",\n            \"cveId\": \"CVE-2022-30123\",\n            \"aliasIds\": [],\n            \"aliases\": [\n                \"CVE-2022-30123\",\n                \"GHSA-wq4h-7r42-5hrr\"\n            ],\n            \"credits\": [],\n            \"cvss2BaseScore\": null,\n            \"cvss2BaseSeverity\": null,\n            \"cvss2Data\": {\n                \"_id\": \"63702ead6e491db34df6b394\"\n            },\n            \"cvss3BaseScore\": 10,\n            \"cvss3BaseSeverity\": \"CRITICAL\",\n            \"cvss3Data\": {\n                \"exploitabilityScore\": 3.9,\n                \"impactScore\": 6,\n                \"_id\": \"63e4b07d35eb8f4b22000ce9\"\n            },\n            \"dateCreated\": \"2022-11-12T23:39:25.518Z\",\n            \"dateModified\": \"2023-02-09T09:00:12.369Z\",\n            \"description\": \"Possible shell escape sequence injection vulnerability in Rack\",\n            \"epssPercentile\": 0.27449,\n            \"epssScore\": 0.00885,\n            \"publishDate\": \"2022-05-27T16:36:51.000Z\",\n            \"references\": [\n                {\n                    \"type\": \"https://discuss.rubyonrails.org/t/cve-2022-30123-possible-shell-escape-sequence-injection-vulnerability-in-rack/80728\",\n                    \"url\": \"https://discuss.rubyonrails.org/t/cve-2022-30123-possible-shell-escape-sequence-injection-vulnerability-in-rack/80728\",\n                    \"_id\": \"63e4b07d35eb8f4b22000ce7\"\n                },\n                {\n                    \"type\": \"ADVISORY\",\n                    \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2022-30123\",\n                    \"_id\": \"63e4b07d35eb8f4b22000ce8\"\n                }\n            ],\n            \"cvssScore\": 10,\n            \"countAffectedAssets\": 9\n        }\n    ]\n}"}],"_postman_id":"edfc36b7-40ba-4936-b8b2-3e90a5b3e3d1"},{"name":"Fetch Top Vulnerabilities","id":"95380fb2-57c3-4e25-85f6-bdb252eb2ee9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerabilities/top","description":"<p>Fetch top 5 vulnerabilities (across Manifest) based on EPSS Score (descending order).</p>\n<p>Avaialble filters on this route:</p>\n<ul>\n<li><code>assetActive</code>: Array[boolean]. Only include vulnerabilities associated with assets that have an <code>isActive</code> value matching one of the values in the array (OR, not AND).</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerabilities","top"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Filter results based on one or more (applied additively) preset filters. This should be an array of objects with keys <code>field</code> and <code>value</code>.</p>\n","type":"text/plain"},"key":"filters","value":"[{ \"field\": \"assetActive\", \"value\": [true] }]"}],"variable":[]}},"response":[{"id":"172f7703-29e3-477c-9ddf-464903dc679d","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerabilities/top"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Feb 2023 06:08:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"23045"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"5a05-4PFVKsx12kFpjH1WneCpyQxgWMY\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"queryInfo\": {\n        \"nPage\": 1,\n        \"nLimit\": 1000\n    },\n    \"data\": [\n        {\n            \"_id\": \"636f5f13260542146bc68562\",\n            \"cveId\": \"CVE-2021-26084\",\n            \"__v\": 0,\n            \"aliasIds\": [],\n            \"aliases\": [],\n            \"credits\": [],\n            \"cvss2BaseScore\": 7.5,\n            \"cvss2BaseSeverity\": \"HIGH\",\n            \"cvss2Data\": {\n                \"severity\": \"HIGH\",\n                \"exploitabilityScore\": 10,\n                \"impactScore\": 6.4,\n                \"acInsufInfo\": false,\n                \"obtainAllPrivilege\": false,\n                \"obtainUserPrivilege\": false,\n                \"obtainOtherPrivilege\": false,\n                \"userInteractionRequired\": false,\n                \"_id\": \"63e4b03d016fb8bfba0dbdf1\"\n            },\n            \"cvss3BaseScore\": 9.8,\n            \"cvss3BaseSeverity\": \"CRITICAL\",\n            \"cvss3Data\": {\n                \"exploitabilityScore\": 3.9,\n                \"impactScore\": 5.9,\n                \"_id\": \"63e4b03d016fb8bfba0dbdf0\"\n            },\n            \"dateCreated\": \"2022-11-12T08:53:39.828Z\",\n            \"dateModified\": \"2023-02-09T09:00:12.362Z\",\n            \"description\": \"In affected versions of Confluence Server and Data Center, an OGNL injection vulnerability exists that would allow an unauthenticated attacker to execute arbitrary code on a Confluence Server or Data Center instance. The affected versions are before version 6.13.23, from version 6.14.0 before 7.4.11, from version 7.5.0 before 7.11.6, and from version 7.12.0 before 7.12.5.\",\n            \"epssPercentile\": 1,\n            \"epssScore\": 0.97974,\n            \"publishDate\": \"2021-08-30T07:15:00.000Z\",\n            \"references\": [\n                {\n                    \"type\": \"https://jira.atlassian.com/browse/CONFSERVER-67940\",\n                    \"url\": \"https://jira.atlassian.com/browse/CONFSERVER-67940\",\n                    \"_id\": \"63e4b03d016fb8bfba0dbded\"\n                },\n                {\n                    \"type\": \"http://packetstormsecurity.com/files/167449/Atlassian-Confluence-Namespace-OGNL-Injection.html\",\n                    \"url\": \"http://packetstormsecurity.com/files/167449/Atlassian-Confluence-Namespace-OGNL-Injection.html\",\n                    \"_id\": \"63e4b03d016fb8bfba0dbdee\"\n                },\n                {\n                    \"type\": \"ADVISORY\",\n                    \"url\": \"https://nvd.nist.gov/vuln/detail/CVE-2021-26084\",\n                    \"_id\": \"63e4b03d016fb8bfba0dbdef\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"95380fb2-57c3-4e25-85f6-bdb252eb2ee9"},{"name":"Fetch Vulnerabilities Feed","id":"17bfb2c5-142a-424f-9020-acb0d611355e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerabilities/feed","description":"<p>Fetch the latest 10 published vulnerabilities (sorted descending based on publishDate).</p>\n<p>Avaialble filters on this route:</p>\n<ul>\n<li><code>assetActive</code>: Array[boolean]. Only include vulnerabilities associated with assets that have an <code>isActive</code> value matching one of the values in the array (OR, not AND).</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vulnerabilities","feed"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Filter results based on one or more (applied additively) preset filters. This should be an array of objects with keys <code>field</code> and <code>value</code>.</p>\n","type":"text/plain"},"key":"filters","value":"[{'field':'assetActive', 'value':[true]}]"}],"variable":[]}},"response":[{"id":"d894eaf2-5cc8-47aa-a5ff-d5e4bdfed709","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{apiUrl}}/vulnerabilities/feed"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Feb 2023 06:09:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1771"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"6eb-5zV6TU40QrqmVN6yFgFRDiv3pVc\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"queryInfo\": {\n        \"impactedAssets\": 0\n    },\n    \"errors\": [],\n    \"data\": [\n        {\n            \"_id\": \"63e4af6447a95d294ac9d05d\",\n            \"cveId\": \"CVE-2023-25168\",\n            \"cvss2BaseSeverity\": null,\n            \"cvss3BaseSeverity\": null,\n            \"publishDate\": \"2023-02-09T00:16:00.000Z\",\n            \"impactedAssets\": 0\n        },\n        {\n            \"_id\": \"636f6143260542146bcd2f34\",\n            \"cveId\": \"CVE-2019-7572\",\n            \"cvss2BaseSeverity\": \"MEDIUM\",\n            \"cvss3BaseSeverity\": \"HIGH\",\n            \"publishDate\": \"2023-02-09T00:00:00.000Z\",\n            \"impactedAssets\": 0\n        },\n        {\n            \"_id\": \"63e4af4a47a95d294ac82089\",\n            \"cveId\": \"CVE-2023-0249\",\n            \"cvss2BaseSeverity\": null,\n            \"cvss3BaseSeverity\": null,\n            \"publishDate\": \"2023-02-08T23:15:00.000Z\",\n            \"impactedAssets\": 0\n        },\n        {\n            \"_id\": \"63e4af4a47a95d294ac820d0\",\n            \"cveId\": \"CVE-2023-0250\",\n            \"cvss2BaseSeverity\": null,\n            \"cvss3BaseSeverity\": null,\n            \"publishDate\": \"2023-02-08T23:15:00.000Z\",\n            \"impactedAssets\": 0\n        },\n        {\n            \"_id\": \"63e4af4a47a95d294ac82109\",\n            \"cveId\": \"CVE-2023-0251\",\n            \"cvss2BaseSeverity\": null,\n            \"cvss3BaseSeverity\": null,\n            \"publishDate\": \"2023-02-08T23:15:00.000Z\",\n            \"impactedAssets\": 0\n        },\n        {\n            \"_id\": \"63e4af6447a95d294ac9cfe7\",\n            \"cveId\": \"CVE-2023-25166\",\n            \"cvss2BaseSeverity\": null,\n            \"cvss3BaseSeverity\": null,\n            \"publishDate\": \"2023-02-08T22:38:10.000Z\",\n            \"impactedAssets\": 0\n        },\n        {\n            \"_id\": \"63e4af6447a95d294ac9cefe\",\n            \"cveId\": \"CVE-2023-25163\",\n            \"cvss2BaseSeverity\": null,\n            \"cvss3BaseSeverity\": null,\n            \"publishDate\": \"2023-02-08T22:37:10.000Z\",\n            \"impactedAssets\": 0\n        },\n        {\n            \"_id\": \"63e4af6447a95d294ac9cf64\",\n            \"cveId\": \"CVE-2023-25165\",\n            \"cvss2BaseSeverity\": null,\n            \"cvss3BaseSeverity\": null,\n            \"publishDate\": \"2023-02-08T22:36:51.000Z\",\n            \"impactedAssets\": 0\n        },\n        {\n            \"_id\": \"63e4af6447a95d294ac9ceb6\",\n            \"cveId\": \"CVE-2023-25151\",\n            \"cvss2BaseSeverity\": null,\n            \"cvss3BaseSeverity\": null,\n            \"publishDate\": \"2023-02-08T22:32:16.000Z\",\n            \"impactedAssets\": 0\n        },\n        {\n            \"_id\": \"63e364aa47a95d294aa17a85\",\n            \"cveId\": \"CVE-2023-0286\",\n            \"cvss2BaseSeverity\": null,\n            \"cvss3BaseSeverity\": null,\n            \"publishDate\": \"2023-02-08T22:17:06.000Z\",\n            \"impactedAssets\": 0\n        }\n    ]\n}"}],"_postman_id":"17bfb2c5-142a-424f-9020-acb0d611355e"}],"id":"61acdf20-b866-448d-981d-b464536cccbc","_postman_id":"61acdf20-b866-448d-981d-b464536cccbc","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Pre-Release: Vulnerability Dependency Stack","item":[{"name":"Fetch Single Asset Dependency Stack By Vulnerability","id":"79b92feb-8d06-491e-a1ac-cac91cdae992","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/dependency/stackByVulnerability?assetId=your-asset-id&cveId=all","description":"<p>Given an asset Id, provide a list of vulnerabilities and a graph/tree describing how/from which component the vuln is introducted (from the asset/top-level to lowest nested component where vuln is introduced). List may optionally include full metadata for each vulnerability. Fetch a single CVE or <code>all</code>.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> none</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["dependency","stackByVulnerability"],"host":["{{apiUrl}}"],"query":[{"description":{"content":"<p>required. Your Asset id that you want to get dependency graph for</p>\n","type":"text/plain"},"key":"assetId","value":"your-asset-id"},{"description":{"content":"<p>required: Must be a CVE ID (e.g. CVE-123-1234), or \"all\" to fetch all vulnerabiiities (and corresponding dependency stacks) for the given Asset ID. Note that \"all\" is paginated - see <code>limit</code> and <code>page</code>.</p>\n","type":"text/plain"},"key":"cveId","value":"all"},{"disabled":true,"description":{"content":"<p>optional. For each vulnerability, include full vulnerability metadata. This may have a minor performance impact when assetId = <code>all</code></p>\n","type":"text/plain"},"key":"includeVulnData","value":"false"},{"disabled":true,"description":{"content":"<p>optional. Specify a page of paginated results to fetch (starts at 1). Pagination only applies when cveId = <code>all</code>.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>optional. If paginating, specify number of results per page. Defaults to <code>10</code>. By design, specifying a high number here can effectively circumvent pagination but will have significant performance impact. For example, specifying a limit of 1000 for an asset with 500 vulns would return all vulns (in a single page/resultset), but would probably take several minutes to return a multi-MB response.</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[]}},"response":[],"_postman_id":"79b92feb-8d06-491e-a1ac-cac91cdae992"},{"name":"Fetch Dependency Stack By Depth","id":"5938b7ed-14cd-48b7-8632-6b67caff9aa6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/dependency/stackByDepth?entityType=asset&assetId=your-asset-id","description":"<p>Given an asset Id, provide a list of an asset's top-level components and their graph/stack of dependencies (from the asset/top-level to lowest nested component). This is slightly different than typical /components routes in which components are in a flat list.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> none</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["dependency","stackByDepth"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>optional or required. Depends assetId is provided</p>\n","type":"text/plain"},"key":"coordinates","value":""},{"description":{"content":"<p>asset or component</p>\n","type":"text/plain"},"key":"entityType","value":"asset"},{"description":{"content":"<p>optional or required. Depends coordinates is provided</p>\n","type":"text/plain"},"key":"assetId","value":"your-asset-id"},{"disabled":true,"description":{"content":"<p>depth of the stack. max is 100</p>\n","type":"text/plain"},"key":"stackDepth","value":"10"},{"disabled":true,"key":null,"value":""}],"variable":[]}},"response":[],"_postman_id":"5938b7ed-14cd-48b7-8632-6b67caff9aa6"}],"id":"cb9dff6c-b92f-47e8-a841-9c988b7ca52b","description":"<p><strong>Pre-Release routes are experimental: functionality and availability may change. It is not recommended to rely on these in your production applications.</strong></p>\n<p>Dependency Graph/Stack: Given an asset Id, provide a list of components (and/or vulnerabilities) and their graph/stack of dependencies. A common usecase for this is to determine where a specific vulnerability was introduced (e.g. in a nested component).</p>\n","_postman_id":"cb9dff6c-b92f-47e8-a841-9c988b7ca52b","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Vendor","item":[{"name":"SBOM Requests","item":[{"name":"Create SBOM Request","id":"a262ac0d-0d3d-48ac-9ca3-a16de38c6c49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"\n{\n    \"emails\": [\n        \"ori@manifestcyber.com\"\n    ], // Emails you want to send a request to\n    \"recipientPointOfContact\": \"Demo\", // Name of the recipient point of contact\n    \"recipientOrgName\": \"My Org\", // Name (alias) of the recipient organization name (100 max length)\n    \"description\": \"My vendor request\", // Description of the SBOM request (1000 max) \n    \"requestMetadata\": {\n        \"productName\": \"mip map\"\n    }, // Additional metadata to be saved on the request, key-value store of strings (150 max length)\n    \"messageToVendor\": \"Message to appear in the invite email\" // Message to send to the vendors (1000 max length)\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/vendor/requestSboms","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:sbom-request</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vendor","requestSboms"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"917a250f-533f-46ef-90bb-5f187a6efcd2","name":"Create SBOM Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"\n{\n    \"emails\": [\n        \"my@companyemail.com\"\n    ], // Emails you want to send a request to\n    \"recipientPointOfContact\": \"Demo\", // Name of the recipient point of contact\n    \"recipientOrgName\": \"My Org\", // Name (alias) of the recipient organization name (100 max length)\n    \"description\": \"My vendor request\", // Description of the SBOM request (1000 max) \n    \"requestMetadata\": {\n        \"productName\": \"mip map\"\n    }, // Additional metadata to be saved on the request, key-value store of strings (150 max length)\n    \"messageToVendor\": \"Message to appear in the invite email\" // Message to send to the vendors (1000 max length)\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/vendor/requestSboms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 14:09:18 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"4c-+iP0WzaJxLkpufQTEmRsGxtc6Cs\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": {\n        \"requestId\": \"66fc028efc3010fca296cba3\"\n    }\n}"}],"_postman_id":"a262ac0d-0d3d-48ac-9ca3-a16de38c6c49"},{"name":"Get SBOM Requests","id":"104b9653-4a0b-4fff-a94e-bf45a89e4e7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/vendor/requestSboms?limit=&page=&sort=&status=","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sbom-request</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vendor","requestSboms"],"host":["{{apiUrl}}"],"query":[{"description":{"content":"<p>Pagination limit parameter (optional)</p>\n","type":"text/plain"},"key":"limit","value":""},{"description":{"content":"<p>Pagination page parameter (optional)</p>\n","type":"text/plain"},"key":"page","value":""},{"description":{"content":"<p>Pagination sort parameter (optional, default: { “requestDate”: -1 } )</p>\n","type":"text/plain"},"key":"sort","value":""},{"description":{"content":"<p>Filter requests by status, either “completed” or “pending”.  if empty, returns all</p>\n","type":"text/plain"},"key":"status","value":""}],"variable":[]}},"response":[{"id":"1f6c0d3e-d6ca-4cf9-bef4-5a374403a0c9","name":"No filters","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiUrl}}/vendor/requestSboms?limit=&page=&sort=&status=","host":["{{apiUrl}}"],"path":["vendor","requestSboms"],"query":[{"key":"limit","value":"","description":"Pagination limit parameter (optional)"},{"key":"page","value":"","description":"Pagination page parameter (optional)"},{"key":"sort","value":"","description":"Pagination sort parameter (optional, default: { “requestDate”: -1 } )"},{"key":"status","value":"","description":"Filter requests by status, either “completed” or “pending”.  if empty, returns all\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 14:07:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"1327-YLxv42tFClYq6PxpJE4pfW4e2z0\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"errors\": [],\n    \"data\": [\n        {\n            \"requestId\": \"66fc0020fc3010fca296c706\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"my@companyemail.com\"\n            ],\n            \"requestDate\": \"2024-10-01T13:58:56.889Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66fbffee89d8a8862505cfb7\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"my@companyemail.com\"\n            ],\n            \"requestDate\": \"2024-10-01T13:58:06.121Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66f2e4022a770971944cd021\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-24T16:08:34.000Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66ec8504277d67d7fd3f438b\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-19T20:09:40.670Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66ec881cc5d4dffcde32ff2c\",\n                            \"dateUploaded\": \"2024-09-19T20:22:53.081Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-19T20:22:52.963Z\"\n                }\n            },\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66ec8439277d67d7fd3f1e45\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-19T20:06:17.242Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66e2ffed0401a89cf846d7e0\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"\",\n            \"recipientOrgName\": \"\",\n            \"description\": \"\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-12T14:51:25.295Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66e3005c72711b71d4a561d2\",\n                            \"dateUploaded\": \"2024-09-12T14:53:17.106Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-12T14:53:17.028Z\"\n                }\n            },\n            \"requestMetadata\": {}\n        },\n        {\n            \"requestId\": \"66e2f5bc8409f18f60402e70\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"\",\n            \"recipientOrgName\": \"\",\n            \"description\": \"\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-12T14:07:56.514Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66e2f5e88409f18f604030dc\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.527Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f604030fc\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.621Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403100\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.638Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f6040310b\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.650Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403122\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.566Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403125\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.618Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403150\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.993Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f6040316c\",\n                            \"dateUploaded\": \"2024-09-12T14:08:41.163Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-12T14:08:40.379Z\"\n                }\n            },\n            \"requestMetadata\": {}\n        },\n        {\n            \"requestId\": \"66dbc390cd416ad8fb5e022d\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"\",\n            \"recipientOrgName\": \"\",\n            \"description\": \"\",\n            \"requestRecipients\": [\n                \"ori+1@manifestcyber.com\",\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:08:00.612Z\",\n            \"fulfillments\": {\n                \"ori+1@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66dbc3d1cd416ad8fb5e056b\",\n                            \"dateUploaded\": \"2024-09-07T03:09:05.376Z\"\n                        },\n                        {\n                            \"id\": \"66dbc3d1cd416ad8fb5e0588\",\n                            \"dateUploaded\": \"2024-09-07T03:09:05.616Z\"\n                        },\n                        {\n                            \"id\": \"66dbc3d1cd416ad8fb5e058b\",\n                            \"dateUploaded\": \"2024-09-07T03:09:05.596Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-07T03:09:05.294Z\"\n                }\n            },\n            \"requestMetadata\": {}\n        },\n        {\n            \"requestId\": \"66dbc2b8cd416ad8fb5df80e\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"Ori\",\n            \"recipientOrgName\": \"Bula Labs\",\n            \"description\": \"this is my message to    you.\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:04:24.325Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66dbc30ecd416ad8fb5dfbd0\",\n                            \"dateUploaded\": \"2024-09-07T03:05:50.851Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-07T03:05:50.754Z\"\n                }\n            },\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66dbc271cd416ad8fb5df667\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Ori\",\n            \"recipientOrgName\": \"Bula Labs\",\n            \"description\": \"this is my message to    you\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:03:13.112Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66dbc268cd416ad8fb5df641\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Ori\",\n            \"recipientOrgName\": \"Bula Labs\",\n            \"description\": \"this is my message to you\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:03:04.365Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        }\n    ],\n    \"queryInfo\": {\n        \"status\": \"\",\n        \"sort\": \"\",\n        \"page\": 1,\n        \"limit\": \"all\",\n        \"totalReturn\": 11,\n        \"totalCount\": 11\n    }\n}"},{"id":"e25c8a09-67c6-4ba6-b4f0-bf38253783eb","name":"Pagination","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiUrl}}/vendor/requestSboms?limit=10&page=1&sort={ \"requestDate\": -1 }","host":["{{apiUrl}}"],"path":["vendor","requestSboms"],"query":[{"key":"limit","value":"10","description":"Pagination limit parameter (optional)"},{"key":"page","value":"1","description":"Pagination page parameter (optional)"},{"key":"sort","value":"{ \"requestDate\": -1 }","description":"Pagination sort parameter (optional, default: { “requestDate”: -1 } )"},{"key":"status","value":"pending","description":"Filter requests by status, either “completed” or “pending”.  if empty, returns all\n","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 14:08:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"11ef-sH7EWgv/KncDvuabJb3KCKY4nV4\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"errors\": [],\n    \"data\": [\n        {\n            \"requestId\": \"66fc0020fc3010fca296c706\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"my@companyemail.com\"\n            ],\n            \"requestDate\": \"2024-10-01T13:58:56.889Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66fbffee89d8a8862505cfb7\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"my@companyemail.com\"\n            ],\n            \"requestDate\": \"2024-10-01T13:58:06.121Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66f2e4022a770971944cd021\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-24T16:08:34.000Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66ec8504277d67d7fd3f438b\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-19T20:09:40.670Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66ec881cc5d4dffcde32ff2c\",\n                            \"dateUploaded\": \"2024-09-19T20:22:53.081Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-19T20:22:52.963Z\"\n                }\n            },\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66ec8439277d67d7fd3f1e45\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-19T20:06:17.242Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66e2ffed0401a89cf846d7e0\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"\",\n            \"recipientOrgName\": \"\",\n            \"description\": \"\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-12T14:51:25.295Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66e3005c72711b71d4a561d2\",\n                            \"dateUploaded\": \"2024-09-12T14:53:17.106Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-12T14:53:17.028Z\"\n                }\n            },\n            \"requestMetadata\": {}\n        },\n        {\n            \"requestId\": \"66e2f5bc8409f18f60402e70\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"\",\n            \"recipientOrgName\": \"\",\n            \"description\": \"\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-12T14:07:56.514Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66e2f5e88409f18f604030dc\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.527Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f604030fc\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.621Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403100\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.638Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f6040310b\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.650Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403122\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.566Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403125\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.618Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403150\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.993Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f6040316c\",\n                            \"dateUploaded\": \"2024-09-12T14:08:41.163Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-12T14:08:40.379Z\"\n                }\n            },\n            \"requestMetadata\": {}\n        },\n        {\n            \"requestId\": \"66dbc390cd416ad8fb5e022d\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"\",\n            \"recipientOrgName\": \"\",\n            \"description\": \"\",\n            \"requestRecipients\": [\n                \"ori+1@manifestcyber.com\",\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:08:00.612Z\",\n            \"fulfillments\": {\n                \"ori+1@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66dbc3d1cd416ad8fb5e056b\",\n                            \"dateUploaded\": \"2024-09-07T03:09:05.376Z\"\n                        },\n                        {\n                            \"id\": \"66dbc3d1cd416ad8fb5e0588\",\n                            \"dateUploaded\": \"2024-09-07T03:09:05.616Z\"\n                        },\n                        {\n                            \"id\": \"66dbc3d1cd416ad8fb5e058b\",\n                            \"dateUploaded\": \"2024-09-07T03:09:05.596Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-07T03:09:05.294Z\"\n                }\n            },\n            \"requestMetadata\": {}\n        },\n        {\n            \"requestId\": \"66dbc2b8cd416ad8fb5df80e\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"Ori\",\n            \"recipientOrgName\": \"Bula Labs\",\n            \"description\": \"this is my message to    you.\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:04:24.325Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66dbc30ecd416ad8fb5dfbd0\",\n                            \"dateUploaded\": \"2024-09-07T03:05:50.851Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-07T03:05:50.754Z\"\n                }\n            },\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66dbc271cd416ad8fb5df667\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Ori\",\n            \"recipientOrgName\": \"Bula Labs\",\n            \"description\": \"this is my message to    you\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:03:13.112Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        }\n    ],\n    \"queryInfo\": {\n        \"sort\": \"{ \\\"requestDate\\\": -1 }\",\n        \"page\": 1,\n        \"limit\": 10,\n        \"totalReturn\": 10,\n        \"totalCount\": 11\n    }\n}"},{"id":"078ec538-cfa5-4ab9-ae6a-5d1b1e5ffa3f","name":"Pending requests only","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiUrl}}/vendor/requestSboms?limit=1000&page=1&sort={ \"requestDate\": 1 }&status=pending","host":["{{apiUrl}}"],"path":["vendor","requestSboms"],"query":[{"key":"limit","value":"1000","description":"Pagination limit parameter (optional)"},{"key":"page","value":"1","description":"Pagination page parameter (optional)"},{"key":"sort","value":"{ \"requestDate\": 1 }","description":"Pagination sort parameter (optional, default: { “requestDate”: -1 } )"},{"key":"status","value":"pending","description":"Filter requests by status, either “completed” or “pending”.  if empty, returns all\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 14:08:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"8fa-d97nUbSeJaQOMDaNMyS8kSm50sM\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"errors\": [],\n    \"data\": [\n        {\n            \"requestId\": \"66dbc268cd416ad8fb5df641\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Ori\",\n            \"recipientOrgName\": \"Bula Labs\",\n            \"description\": \"this is my message to you\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:03:04.365Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66dbc271cd416ad8fb5df667\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Ori\",\n            \"recipientOrgName\": \"Bula Labs\",\n            \"description\": \"this is my message to    you\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:03:13.112Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66dbc390cd416ad8fb5e022d\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"\",\n            \"recipientOrgName\": \"\",\n            \"description\": \"\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:08:00.481Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {}\n        },\n        {\n            \"requestId\": \"66ec8439277d67d7fd3f1e45\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-19T20:06:17.242Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66f2e4022a770971944cd021\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-24T16:08:34.000Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66fbffee89d8a8862505cfb7\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"my@companyemail.com\"\n            ],\n            \"requestDate\": \"2024-10-01T13:58:06.121Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66fc0020fc3010fca296c706\",\n            \"requestFulfilled\": false,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"my@companyemail.com\"\n            ],\n            \"requestDate\": \"2024-10-01T13:58:56.889Z\",\n            \"fulfillments\": {},\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        }\n    ],\n    \"queryInfo\": {\n        \"status\": \"pending\",\n        \"sort\": \"{ \\\"requestDate\\\": 1 }\",\n        \"page\": 1,\n        \"limit\": 1000,\n        \"totalReturn\": 7,\n        \"totalCount\": 7\n    }\n}"},{"id":"a82f9fa9-5dc2-4f41-8f41-2cfd3ae73d74","name":"Completeed requests only","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiUrl}}/vendor/requestSboms?limit=1000&page=1&sort={ \"requestDate\": 1 }&status=completed","host":["{{apiUrl}}"],"path":["vendor","requestSboms"],"query":[{"key":"limit","value":"1000","description":"Pagination limit parameter (optional)"},{"key":"page","value":"1","description":"Pagination page parameter (optional)"},{"key":"sort","value":"{ \"requestDate\": 1 }","description":"Pagination sort parameter (optional, default: { “requestDate”: -1 } )"},{"key":"status","value":"completed","description":"Filter requests by status, either “completed” or “pending”.  if empty, returns all\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 14:08:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"bd4-HUwh5U5uqHKJgDdAR0IzOMpxlLA\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"errors\": [],\n    \"data\": [\n        {\n            \"requestId\": \"66dbc2b8cd416ad8fb5df80e\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"Ori\",\n            \"recipientOrgName\": \"Bula Labs\",\n            \"description\": \"this is my message to    you.\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:04:24.325Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66dbc30ecd416ad8fb5dfbd0\",\n                            \"dateUploaded\": \"2024-09-07T03:05:50.851Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-07T03:05:50.754Z\"\n                }\n            },\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        },\n        {\n            \"requestId\": \"66dbc390cd416ad8fb5e022d\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"\",\n            \"recipientOrgName\": \"\",\n            \"description\": \"\",\n            \"requestRecipients\": [\n                \"ori+1@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-07T03:08:00.612Z\",\n            \"fulfillments\": {\n                \"ori+1@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66dbc3d1cd416ad8fb5e056b\",\n                            \"dateUploaded\": \"2024-09-07T03:09:05.376Z\"\n                        },\n                        {\n                            \"id\": \"66dbc3d1cd416ad8fb5e0588\",\n                            \"dateUploaded\": \"2024-09-07T03:09:05.616Z\"\n                        },\n                        {\n                            \"id\": \"66dbc3d1cd416ad8fb5e058b\",\n                            \"dateUploaded\": \"2024-09-07T03:09:05.596Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-07T03:09:05.294Z\"\n                }\n            },\n            \"requestMetadata\": {}\n        },\n        {\n            \"requestId\": \"66e2f5bc8409f18f60402e70\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"\",\n            \"recipientOrgName\": \"\",\n            \"description\": \"\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-12T14:07:56.514Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66e2f5e88409f18f604030dc\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.527Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f604030fc\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.621Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403100\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.638Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f6040310b\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.650Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403122\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.566Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403125\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.618Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f60403150\",\n                            \"dateUploaded\": \"2024-09-12T14:08:40.993Z\"\n                        },\n                        {\n                            \"id\": \"66e2f5e88409f18f6040316c\",\n                            \"dateUploaded\": \"2024-09-12T14:08:41.163Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-12T14:08:40.379Z\"\n                }\n            },\n            \"requestMetadata\": {}\n        },\n        {\n            \"requestId\": \"66e2ffed0401a89cf846d7e0\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"\",\n            \"recipientOrgName\": \"\",\n            \"description\": \"\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-12T14:51:25.295Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66e3005c72711b71d4a561d2\",\n                            \"dateUploaded\": \"2024-09-12T14:53:17.106Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-12T14:53:17.028Z\"\n                }\n            },\n            \"requestMetadata\": {}\n        },\n        {\n            \"requestId\": \"66ec8504277d67d7fd3f438b\",\n            \"requestFulfilled\": true,\n            \"recipientPointOfContact\": \"Demo\",\n            \"recipientOrgName\": \"My Org\",\n            \"description\": \"My vendor request\",\n            \"requestRecipients\": [\n                \"ori@manifestcyber.com\"\n            ],\n            \"requestDate\": \"2024-09-19T20:09:40.670Z\",\n            \"fulfillments\": {\n                \"ori@manifestcyber.com\": {\n                    \"sboms\": [\n                        {\n                            \"id\": \"66ec881cc5d4dffcde32ff2c\",\n                            \"dateUploaded\": \"2024-09-19T20:22:53.081Z\"\n                        }\n                    ],\n                    \"dateFulfilled\": \"2024-09-19T20:22:52.963Z\"\n                }\n            },\n            \"requestMetadata\": {\n                \"productName\": \"mip map\"\n            }\n        }\n    ],\n    \"queryInfo\": {\n        \"status\": \"completed\",\n        \"sort\": \"{ \\\"requestDate\\\": 1 }\",\n        \"page\": 1,\n        \"limit\": 1000,\n        \"totalReturn\": 5,\n        \"totalCount\": 5\n    }\n}"}],"_postman_id":"104b9653-4a0b-4fff-a94e-bf45a89e4e7c"},{"name":"Get SBOM Request by ID","id":"3e9d1f25-256f-4c19-b235-4ecaaa705475","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/vendor/requestSboms/:requestId","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sbom-request</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vendor","requestSboms",":requestId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>Requested request ID</p>\n","type":"text/plain"},"type":"any","value":"","key":"requestId"}]}},"response":[{"id":"d33fc3c9-3b61-4e92-84b7-78ec8d72281a","name":"Get SBOM Request by ID","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiUrl}}/vendor/requestSboms/:requestId","host":["{{apiUrl}}"],"path":["vendor","requestSboms",":requestId"],"variable":[{"key":"requestId","value":"66fc0020fc3010fca296c706","description":"Requested request ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 14:07:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"15b-43M+XMuCHvy0/UvKr0z4HKfFKQw\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"errors\": [],\n    \"data\": {\n        \"requestId\": \"66fc0020fc3010fca296c706\",\n        \"requestFulfilled\": false,\n        \"recipientPointOfContact\": \"Demo\",\n        \"recipientOrgName\": \"My Org\",\n        \"description\": \"My vendor request\",\n        \"requestRecipients\": [\n            \"my@companyemail.com\"\n        ],\n        \"requestDate\": \"2024-10-01T13:58:56.889Z\",\n        \"fulfillments\": {},\n        \"requestMetadata\": {\n            \"productName\": \"mip map\"\n        }\n    }\n}"}],"_postman_id":"3e9d1f25-256f-4c19-b235-4ecaaa705475"},{"name":"Get SBOMs for a request","id":"db748bda-796c-4465-989f-f0badc810108","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/vendor/requestSboms/:requestId/sboms","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vendor","requestSboms",":requestId","sboms"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>Request ID to get SBOMs for</p>\n","type":"text/plain"},"type":"any","value":"","key":"requestId"}]}},"response":[{"id":"cb370d66-bbda-4896-ad89-3bc673ba744b","name":"Get SBOMs for a request","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{apiUrl}}/vendor/requestSboms/:requestId/sboms ","host":["{{apiUrl}}"],"path":["vendor","requestSboms",":requestId","sboms "],"variable":[{"key":"requestId","value":"66dbc2b8cd416ad8fb5df80e","description":"Request ID to get SBOMs for"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Oct 2024 13:59:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://app.manifestcyber.com"},{"key":"ETag","value":"W/\"737-8jHWmxfHx/zeGpgqxWhnYeI8MrU\""},{"key":"Content-Security-Policy","value":"default-src 'self' https://.manifestcyber.com; script-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com; img-src 'self' blob: data: https://.manifestcyber.com https://cdn.merge.dev; font-src 'self' blob: https://.manifestcyber.com https://fonts.googleapis.com https://fonts.gstatic.com; connect-src 'self' https://.manifestcyber.com https://cdn.merge.dev https://.sentry.io; media-src 'self' https://.manifestcyber.com https://cdn.merge.dev; object-src 'none'; prefetch-src 'self' https://.manifestcyber.com; child-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; frame-src 'self' blob: https://.manifestcyber.com https://cdn.merge.dev; worker-src 'self' blob: https://*.manifestcyber.com; frame-ancestors 'none'; report-uri https://o4503966059528192.ingest.sentry.io/api/4504070480199680/security/?sentry_key=4c25b28fbf734d19a3d655b7a50bc616"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"errors\": [],\n    \"data\": [\n        {\n            \"downloadUrl\": \"https://mfst-prod-ingestion-sbom-raw-data.s3.us-east-1.amazonaws.com/6654a4508ba750e422ea323a/de4f8cbd-0377-49cc-93af-88c8afde2125.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=ASIA2O34W5YBVH2Q4WH4%2F20241001%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20241001T135947Z&X-Amz-Expires=3600&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEEYaCXVzLWVhc3QtMSJGMEQCIH6SPXb0GrvZ%2BtoTncJJHUgXXfJmlR7f%2Fbb5R0XZ9euVAiAZY15yOVzwQjWTjYbh5nNUUY4ULf%2F88yyQ2m1lfUeLZyqGBAiP%2F%2F%2F%2F%2F%2F%2F%2F%2F%2F8BEAEaDDcxOTEzMTcwMDczOSIMg1NYP%2Fnz9ZKrM1cnKtoDRioI9G%2BE2gRQ48jp0oGMBL8D9NIJHSKbKleS6jyWdViozuAdvSTH%2B7KOBoubTdNV1dFJRm27SSmSp9X88QiH05uBo56Qk12s%2FQyU9TI7iHyyqzcLQesZw6fk7ZljybtZpW1Pzrbt2kVE7V8ItxRx5wJEpXP0rl2cCr0Qagq9m%2FVjb4SED5Lyll0IT2BXASTZ9xwqgAb1TarFtKdtlYxk6yCinPk%2FkzB3X%2FcHOv%2F04fBnUFsgYL4sw2XQWz1ypq4e1qHPqwqoYda9uF58yQg4nqgabEKWxDgnLMpjbSzp27%2Fza%2B%2Fm1d2BhhWphgtmcLcUTQLuhqM3xSuoK6Wi6D1%2FfHvjVQXhaGS7QkeySUKBRvb9lST4X2pjunkD6Rih0GUH3x8h8OCp%2F%2F6U1FRbwpXmMD5l1om%2FzxTqUJeYvZam4u8zof3TFEkaW%2BiBttgMmwotR2MNi3BPYcNjGgaWxRJoUkihA6J9e7IbIfO1JCJIqXxFVUcZj04e35a8NCjc2iPFJWgAvFXvj%2BjlJVoD5v0RaTxPl9CHN6YOO86s5KiM7HogQyHBVNPvha8TRLfozjCDyybAlKhzYugmvrpmRnoa9Rn%2BGbnWnnvrPUtcDsTKeKvVOeqUW2Faz645MMX%2B77cGOqYB8%2FjDY63898IM27LehHhOx%2FNBLPpe1btcQ%2F50PUWDlzfX52KpHKZHEbQZOMu3Tg%2BwEsLL0JSj7uoQKaT2%2FmQEdjY72RWG2nwqveqYaIoomOidmYdDHk7Gd0OaVy3ZQi6ExReYA7zDiRDcOk1jm9FsuIUNv83av1PYTQD%2FGTYHnoXj7dbTZjfMbafAw8ZoErVi7CJ5gqB7vNCQjKU2vQHBngXe0fYK3Q%3D%3D&X-Amz-Signature=be9d6e9dfd9dcbeb04d7166839095e69db719ec2b93ca6b45975e86fe67b153f&X-Amz-SignedHeaders=host&response-content-disposition=attachment%3B%20filename%20%3D%226654a4508ba750e422ea323a%2Fde4f8cbd-0377-49cc-93af-88c8afde2125.json%22&x-id=GetObject\",\n            \"sbomId\": \"66dbc30ecd416ad8fb5dfbd0\"\n        }\n    ]\n}"}],"_postman_id":"db748bda-796c-4465-989f-f0badc810108"}],"id":"fb1b8a72-ea16-4814-a729-f539df79425b","_postman_id":"fb1b8a72-ea16-4814-a729-f539df79425b","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}}],"id":"45caac80-5519-42d4-b966-6bca9fc641b1","description":"<p>Vendor specific routes, used primarily when dealing with third-party requests (ie. AskBOM APIs aka SBOM Requests)</p>\n","_postman_id":"45caac80-5519-42d4-b966-6bca9fc641b1","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Other Routes (App Only)","item":[{"name":"User (App Only)","item":[{"name":"Fetch User Profile (Self)","id":"22aea3d5-e94b-4b79-a80c-ed17753cb81d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/user","description":"<p>Fetch user profile. Not currently available via API token.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["user"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bc9a36ac-aae1-427b-86a9-141af0c150ff","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{apiUrl}}/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://http://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"387"},{"key":"ETag","value":"W/\"183-RbyjhHGek8l9PQ2VXD76ggOA4Dw\""},{"key":"Date","value":"Fri, 04 Nov 2022 15:30:31 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"sucess\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"_id\": \"635d7a11842fb63f7438ca07\",\n            \"emails\": [],\n            \"status\": \"active\",\n            \"organizations\": [\n                \"6359f39ee9d7b7033b55bc23\"\n            ],\n            \"firstName\": \"\",\n            \"lastName\": \"\",\n            \"locale\": null,\n            \"internalRoles\": [],\n            \"mfaMethod\": [],\n            \"phones\": [],\n            \"dateCreated\": \"2022-10-29T19:08:01.681Z\",\n            \"dateModified\": \"2022-11-04T15:24:18.572Z\"\n        }\n    ]\n}"}],"_postman_id":"22aea3d5-e94b-4b79-a80c-ed17753cb81d"}],"id":"01740e7a-007a-4c45-8753-5953ec181239","_postman_id":"01740e7a-007a-4c45-8753-5953ec181239","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"API Token (App Only)","item":[{"name":"Create API Token","id":"3f822089-9947-41a2-86f8-86c990f57f8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"organizationId","value":"6359f39ee9d7b7033b55bc23","type":"text"},{"key":"attachScopes","value":"all","type":"text"}]},"url":"{{apiUrl}}/api-token/create","description":"<p>Not available via api tokens.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["api-token","create"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4c857d04-3227-4d0e-b713-cf02969a7945","name":"200 - Create API Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"organizationId","value":"6359f39ee9d7b7033b55bc23","type":"text"},{"key":"attachScopes","value":"all","type":"text"}]},"url":"{{apiUrl}}/api-token/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Feb 2023 15:25:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"117"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.22.0"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://undefined"},{"key":"ETag","value":"W/\"75-1LNnYxqJAc6Q7dTQbEi73mcVRBY\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"errors\": [\n        \"An API key cannot generate another API key. You must be logged in as a user.\"\n    ],\n    \"data\": []\n}"}],"_postman_id":"3f822089-9947-41a2-86f8-86c990f57f8b"}],"id":"05bcdd97-dd48-489d-a3b3-d00d105487b2","description":"<p>Attempts to create a new API token for given organization. May not be accessed via API token.</p>\n","_postman_id":"05bcdd97-dd48-489d-a3b3-d00d105487b2","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Authentication (App Only)","item":[{"name":"Login / Create Acount","id":"d97784ab-4939-44b6-8014-dec7a410e9af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"filingType","value":"email","type":"text"},{"key":"filing","value":"andrew+test@manifestcyber.com","type":"text"}]},"url":"{{apiUrl}}/auth/new","description":"<p><strong>This route is used by the Manifest app when logging in a user or creating a new account. It is not presently accessible via API token.</strong></p>\n<p>This route initiates a new login request. If the user does not exist, we will attempt to create a new account for them.</p>\n<p>Manifest authentication is passwordless. Given a <code>filing</code> and <code>filingType</code> (email, phone, etc), we will dispatch a one-time code/link to their <code>filing</code> entry. They can click on the included link or manually submit the included code to pass the first auth factor.</p>\n<p>If the user has enabled MFA, they may be prompted for an additional step or code (for example, via SMS) before being logged in.</p>\n<p>--</p>\n<p>Notes on user creation:<br />- An organization may allow/denylist any number of domains, IP addresses/CIDR blocks, or specific email addresses to explicitly allow/prevent login/signup.<br />- We verify the user via the given <code>filing</code> prior to checking allow/denylists in order to minimize risk &amp; data leakage, and auth attempts that violate an organization's allow/denylist may trigger notifications/alerts where applicable.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["auth","new"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d97784ab-4939-44b6-8014-dec7a410e9af"}],"id":"18036693-af8b-468d-9b90-41c3fa76c02e","description":"<p><strong>These routes are used by the Manifest web-app when logging in a user or creating a new account. They are not presently accessible via API token.</strong></p>\n","_postman_id":"18036693-af8b-468d-9b90-41c3fa76c02e","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Vendor Creation Opt-In (App Only)","item":[{"name":"Vendor Creation Opt-In","id":"0037db51-a59f-47e8-a79a-92880394cab6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","description":"<p>Email entered by the user attempting to fulfill the vendor SBOM request. This email must either match directly, or (for non-personal email domains) must be on the same domain as the original invited vendor.</p>\n","type":"text"},{"key":"vendorHash","value":"","description":"<p>Secret hash attached to this specific vendor request. Request must be valid and not expired.</p>\n","type":"text"},{"key":"vendorOrganizationName","value":"","description":"<p>Name of the vendor's organization.</p>\n","type":"text"}]},"url":"{{apiUrl}}/vendor/create","description":"<p>During a vendor request (AskBOM), a vendor may opt to create a Manifest account to better manage the SBOMs they are sharing to their customers. This route acts similarly to normal account creation, with some tweaks specific to the vendor creation flow.  </p>\n<p>This route is used internally by the Manifest web app, and is generally not intended for normal use. If you wish to see how we create a new user or organization, you can check out our Authentication routes.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["vendor","create"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0037db51-a59f-47e8-a79a-92880394cab6"}],"id":"5a5b5547-e2c0-4f92-8a81-195cd6cce0dd","_postman_id":"5a5b5547-e2c0-4f92-8a81-195cd6cce0dd","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Pre-Release: Integrations","item":[{"name":"Github","item":[{"name":"Github: Get Installation","id":"6813bdc3-e561-402e-a28b-3bb5b04236bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/integration/github","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong><code>read:integration</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","github"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6813bdc3-e561-402e-a28b-3bb5b04236bd"},{"name":"Github: verify installation","id":"20d4708e-d881-4864-b086-ed514877439b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiUrl}}/integration/github/verify-installation","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:integration</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","github","verify-installation"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"20d4708e-d881-4864-b086-ed514877439b"},{"name":"Github: Generate SBOMs","id":"942e0e80-530b-4ff1-8c3e-d2310f1ffcc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/github/sbom","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong><code>read:integration</code> , <code>create:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","github","sbom"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"942e0e80-530b-4ff1-8c3e-d2310f1ffcc3"},{"name":"Github: Save default settings","id":"03931b79-fd57-4993-8205-a465084b81fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"manifestOrganizationId\": \"...\",\n    \"githubOrganizationId\": \"100000\",\n    \"defaultRepositoryOptions\": {\n        \"triggerType\": \"time\",\n        \"enableTopicsImport\": true\n    },\n    \"githubIntegrationId\": \"...\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/github/default-settings","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:integration</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","github","default-settings"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3c93deea-f5bf-4abd-9791-646a96aac877","name":"Github: Save default settings","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"manifestOrganizationId\": \"6654a4508ba750e422ea323a\",\n    \"githubOrganizationId\": \"106975015\",\n    \"defaultRepositoryOptions\": {\n        \"triggerType\": \"time\",\n        \"enableTopicsImport\": true\n    },\n    \"githubIntegrationId\": \"648cba20cb57d86edbe7e045\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/github/default-settings"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"03931b79-fd57-4993-8205-a465084b81fb"},{"name":"Github: Save repository settings","id":"616297f2-ce93-4389-bf9c-1dacf73e1bbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"manifestOrganizationId\": \"6654a4508ba750e422ea323a\",\n    \"githubOrganizationId\": \"106975015\",\n    \"repositoryManifestSettings\": {\n        \"554941161\": {\n            \"id\": 0,\n            \"name\": \"\",\n            \"enableTopicsImport\": true,\n            \"triggers\": [\n                {\n                    \"triggerType\": \"time\",\n                    \"triggerCriteria\": \"\",\n                    \"triggerTarget\": \"day\"\n                }\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/github/settings","description":"<p>Attempts to verify and complete/modify the installation of the Manifest Github app. Used internally on callback after the Manifest Github app is installed.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:integration</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","github","settings"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2dab3f97-b674-4615-96c8-2da4e1bb3e73","name":"Github: Save default settings","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"manifestOrganizationId\": \"6654a4508ba750e422ea323a\",\n    \"githubOrganizationId\": \"106975015\",\n    \"repositoryManifestSettings\": {\n        \"554941161\": {\n            \"enableTopicsImport\": true,\n            \"triggers\": [\n                {\n                    \"triggerType\": \"time\",\n                    \"triggerCriteria\": \"\",\n                    \"triggerTarget\": \"day\"\n                }\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/github/settings"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"616297f2-ce93-4389-bf9c-1dacf73e1bbe"}],"id":"e2afa301-70eb-4077-93e8-26d543bf2588","_postman_id":"e2afa301-70eb-4077-93e8-26d543bf2588","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}}],"id":"46058f45-f68d-4f4c-90d4-1bb782d0b08a","_postman_id":"46058f45-f68d-4f4c-90d4-1bb782d0b08a","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}}],"id":"e280f1e3-81e6-444e-9cf3-1cd2b9f080dd","_postman_id":"e280f1e3-81e6-444e-9cf3-1cd2b9f080dd","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Merge.dev","item":[{"name":"Direct to merge routes","item":[{"name":"Create link token","id":"ffbeb6c0-2b15-4433-ae68-6f857b3efa85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer OgVxjhJGVEU-fv4Rvs7CR9jz-hhIjW5sScrmoRD6_sycc0UF6SjeOw","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"end_user_origin_id\": \"ABC1234\",\n        \"end_user_organization_name\": \"Rozafa\",\n        \"end_user_email_address\": \"bd@rozafaconsulting.com\",\n        \"categories\": [\"ticketing\"],\n        \"integration\": \"jira\",\n        \"should_create_magic_link_url\": false,\n        \"link_expiry_mins\": 40\n    }","options":{"raw":{"language":"json"}}},"url":"https://api.merge.dev/api/integrations/create-link-token","urlObject":{"protocol":"https","path":["api","integrations","create-link-token"],"host":["api","merge","dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"ffbeb6c0-2b15-4433-ae68-6f857b3efa85"},{"name":"Get account token from temp token","id":"0062a94b-cb7b-48b7-b51b-fa02963ea72f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer OgVxjhJGVEU-fv4Rvs7CR9jz-hhIjW5sScrmoRD6_sycc0UF6SjeOw","type":"text"}],"url":"https://api.merge.dev/api/integrations/account-token/8GsOEATO0QSS7ktr3TRKoq2e0MOY2V1NGAuLXcwNil_xmEvbKPatPA","urlObject":{"protocol":"https","path":["api","integrations","account-token","8GsOEATO0QSS7ktr3TRKoq2e0MOY2V1NGAuLXcwNil_xmEvbKPatPA"],"host":["api","merge","dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"0062a94b-cb7b-48b7-b51b-fa02963ea72f"},{"name":"Fetch ticket","id":"1802f4b5-30dd-4ff2-83f0-ddb5cdc75fda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer OgVxjhJGVEU-fv4Rvs7CR9jz-hhIjW5sScrmoRD6_sycc0UF6SjeOw","type":"text"},{"key":"X-Account-Token","value":"k15JFeWg6_WHKHDepZCI31C2GXUgdn-mKmDFVCvRPh4inypGIhOMhw","type":"text"}],"url":"https://api.merge.dev/api/ticketing/v1/tickets/0eee3e11-b8df-4c83-8913-f113bc243312","urlObject":{"protocol":"https","path":["api","ticketing","v1","tickets","0eee3e11-b8df-4c83-8913-f113bc243312"],"host":["api","merge","dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"1802f4b5-30dd-4ff2-83f0-ddb5cdc75fda"},{"name":"Create ticket","id":"e30afc45-f304-4067-af74-876ddd9ec672","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer OgVxjhJGVEU-fv4Rvs7CR9jz-hhIjW5sScrmoRD6_sycc0UF6SjeOw","type":"text"},{"key":"X-Account-Token","value":"jOxS_KV-VTfmCpkWLyguELXlHA9kNdlZCYaVMf9c_CvHkDWz3j32Ew","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"model\": \n{\"integration\":\"jira\",\"collections\":[\"5b9f0238-8779-4ca8-82a4-9a2206fc60ec\"],\"ticket_type\":\"Task\",\"status\":\"OPEN\",\"name\":\"1\",\"description\":\"asdfasdf\",\"assigneeIds\":[\"0c2dacd8-f82c-467b-81a6-c44d5784f0c4\",\"48449d7c-8808-4bdf-849a-a17055844310\"],\"labels\":[\"test1\",\"abxc\",\"dfasdf\"],\"creatorId\":\"0c2dacd8-f82c-467b-81a6-c44d5784f0c4\",\"priority\":\"HIGH\", \"type\":\"vulnerability\",\"id\":\"CVE-2022-30123\"}\n}","options":{"raw":{"language":"json"}}},"url":"https://api.merge.dev/api/ticketing/v1/tickets","urlObject":{"protocol":"https","path":["api","ticketing","v1","tickets"],"host":["api","merge","dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"e30afc45-f304-4067-af74-876ddd9ec672"},{"name":"Get users","id":"22ac2bca-188c-4b88-91dd-5f959e14402e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer OgVxjhJGVEU-fv4Rvs7CR9jz-hhIjW5sScrmoRD6_sycc0UF6SjeOw","type":"text"},{"key":"X-Account-Token","value":"k15JFeWg6_WHKHDepZCI31C2GXUgdn-mKmDFVCvRPh4inypGIhOMhw","type":"text"}],"url":"https://api.merge.dev/api/ticketing/v1/users","urlObject":{"protocol":"https","path":["api","ticketing","v1","users"],"host":["api","merge","dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"22ac2bca-188c-4b88-91dd-5f959e14402e"},{"name":"Get collections","id":"9f5fb2bc-7ef8-4b79-87b7-1c10a32c2669","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer OgVxjhJGVEU-fv4Rvs7CR9jz-hhIjW5sScrmoRD6_sycc0UF6SjeOw","type":"text"},{"key":"X-Account-Token","value":"k15JFeWg6_WHKHDepZCI31C2GXUgdn-mKmDFVCvRPh4inypGIhOMhw","type":"text"}],"url":"https://api.merge.dev/api/ticketing/v1/collections","urlObject":{"protocol":"https","path":["api","ticketing","v1","collections"],"host":["api","merge","dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f5fb2bc-7ef8-4b79-87b7-1c10a32c2669"},{"name":"Delete linked account","id":"1fe5e06a-d163-4c18-b742-422f0b76c845","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer OgVxjhJGVEU-fv4Rvs7CR9jz-hhIjW5sScrmoRD6_sycc0UF6SjeOw","type":"text"},{"key":"X-Account-Token","value":"bO1p9cuj9uL2YGmPFnEz0LM68coXkNBvdNbth2m0N1Co-BMQZ3jDDA","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.merge.dev/api/ticketing/v1/delete-account","urlObject":{"protocol":"https","path":["api","ticketing","v1","delete-account"],"host":["api","merge","dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"1fe5e06a-d163-4c18-b742-422f0b76c845"}],"id":"f350d866-b398-4ad4-88fd-2753bf2b1ebd","_postman_id":"f350d866-b398-4ad4-88fd-2753bf2b1ebd","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Get account token from temp token","id":"6c7921ac-2c4b-4d6a-9954-51fa61e8a180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJraWQiOiI0alA5SWx0YWZUQU44Z25ObnUzcFJUYllEYlc0RTBVbWNBREN1bUlPMXdZPSIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJhdWQiOiIxcTl1YjUxaTVhZ3NrbmlrdGt0OWowbnBtaSIsImV2ZW50X2lkIjoiMGE4ZmRlNGQtYzE4MS00MDYwLWI1MzUtZTdkZWM2NjE1YjE4IiwidG9rZW5fdXNlIjoiaWQiLCJhdXRoX3RpbWUiOjE2OTAzMDc4NDYsImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC51cy1lYXN0LTIuYW1hem9uYXdzLmNvbVwvdXMtZWFzdC0yX253TGk4dUJuUyIsImNvZ25pdG86dXNlcm5hbWUiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiI0NTkiLCJleHAiOjE2OTA0ODA2MzQsImlhdCI6MTY5MDQ3NzAzNCwiZW1haWwiOiJqdXN0aW5AYXJjZGVhbGVycy5jb20ifQ.xCutDwZI9cFm8q-QspN2dq6q4EufmY5Yrek_dDKP7CITCQXqJmzJ4igJJV69h9H-zrTn4MMJ85GgNNrwwxrNmr10zHyht-CMTlLR-xVazCNA_0F1nHAYCOcEzdKOeG2g3O4YUtNK6AI8Gn5HEU3Mib8cUWJDtR-XCjhBHrHpf7KzQ6kx9IHM9tRoHpFz4CGHUfepPdnRtN1TCljFLS9P9TV44MXD2Qgfn-CGdjdSSgtnjVAF4e_1fV3Jm-xrI5ULkS2FlyuqzcfoSJy6Gjj_S9Y7o9vg2OtK0xRAdFL53y47UziVioJMOvU_vfPmdseOGDSY_9oHreJx9StJS7VvwA","type":"text"},{"key":"id_token","value":"eyJraWQiOiI0alA5SWx0YWZUQU44Z25ObnUzcFJUYllEYlc0RTBVbWNBREN1bUlPMXdZPSIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJhdWQiOiIxcTl1YjUxaTVhZ3NrbmlrdGt0OWowbnBtaSIsImV2ZW50X2lkIjoiMGE4ZmRlNGQtYzE4MS00MDYwLWI1MzUtZTdkZWM2NjE1YjE4IiwidG9rZW5fdXNlIjoiaWQiLCJhdXRoX3RpbWUiOjE2OTAzMDc4NDYsImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC51cy1lYXN0LTIuYW1hem9uYXdzLmNvbVwvdXMtZWFzdC0yX253TGk4dUJuUyIsImNvZ25pdG86dXNlcm5hbWUiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiI0NTkiLCJleHAiOjE2OTA0ODA2MzQsImlhdCI6MTY5MDQ3NzAzNCwiZW1haWwiOiJqdXN0aW5AYXJjZGVhbGVycy5jb20ifQ.xCutDwZI9cFm8q-QspN2dq6q4EufmY5Yrek_dDKP7CITCQXqJmzJ4igJJV69h9H-zrTn4MMJ85GgNNrwwxrNmr10zHyht-CMTlLR-xVazCNA_0F1nHAYCOcEzdKOeG2g3O4YUtNK6AI8Gn5HEU3Mib8cUWJDtR-XCjhBHrHpf7KzQ6kx9IHM9tRoHpFz4CGHUfepPdnRtN1TCljFLS9P9TV44MXD2Qgfn-CGdjdSSgtnjVAF4e_1fV3Jm-xrI5ULkS2FlyuqzcfoSJy6Gjj_S9Y7o9vg2OtK0xRAdFL53y47UziVioJMOvU_vfPmdseOGDSY_9oHreJx9StJS7VvwA","type":"text"},{"key":"refresh_token","value":"eyJjdHkiOiJKV1QiLCJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiUlNBLU9BRVAifQ.k2WPB82Ln-NUF3hjLwGiylcPr0xpeT9O9tteuW-5A9oAmsZYhcJCHsjoCDRt5T7JtwQQiRoJr8Dra1uOgIEk0w05g37RM_AqQtB0OagMnlRedgRrpdRrn3ZeCgOxwqr-lDrbV-4UhwoVnVSBps-PcGN-D6Cy5BmaNJ-yq9PoUBkRPbOsbKaEpGtIGRP5WW0WI6Q6Wsl2eMCpQ-x4RUjy5Mb8vL9swrFyRpVdG_oRlKyHeuLy7HLoLjiVaR3zlyxd7HI2meg-OKwJW3gqaOKU0cV0U1tbCfDV3BjwjtznoAiyIxPbvfyK5yIHeOX66lt-0lyiTH7sgWTIz8s2s0Vewg.OWF5cHk72nryjCr9.9fKANIgkH_yE6MByJScX3CK0eUdGaBprf-U25sR-rblRbEmUMa3uUcwZd3DtlBRTGDt3ugihZ-AUPAsl0_QTpu6O9yOwCadM0Zbr9yEykzbjGkzkMg8mK2XnyiSyZNzINOIJY_W4jNv2lI3VW5P1nOKaEkZgSKejBdFNrY_eBHxVLtnJT7QzbeSmZUz4fCkJbhvHOE7G4jWJI6yFxwRxPf1CN0Br3Jvu7bLZMCU2ERipXJ3MQv2MHQlpIa9Bfnj0EjOz7fe2pDzI11JcfIZ_p82lGYwPm4vOE4S09MvkuPg7wo-X2LhYGKnlbtkYuWGavz1q9B6iTM72ZwnIjr3D0yIzH62uJSo5WvsJ3Mxl2YrOABN_UJw9AUGkkvGM5Iry3-t_vDRpf9sJKQo36IPAcMWzLNZjnGJllJeeTXKcAy17NcggCYMPwWZ4kPOUfryM7rWRumT46gktfTPQQ3dcrKV8HeI-SZQwwq3tGaB-YAVuoRmvk2hcMTT-skeIgpRIIedS6pXCcSuoFqlpOy0ZtbVkLL6rt9Et_qZf-9rSMa30UwxXjzdTaERalH3ymBKvsSOVOt2naL9zG4D32T_iKqCGN3WxO7U7PD1HrN90ejaVP1ROsilHBIr9wuaJeco6yBgsBPtS_IQq5D69Vd9UGo_IpZt_PC_guOlosibxTy50-j8R4olxr2bsTURlyREYReMAaRCa80dyvcrsRmcDAbIIqEtU3d_ZGbU5se6jarl0LCBjPIW2CTDYHy1iK-IDYJIgaz4p02CKIu3A4IKzyPwi7o-GOs26lRAYbWHp_v_DLNn82b363aaFMjabDo88hG5d-xpvlX8qVcUAhXC20LhdfXYSEr-BFlsitrE8UDxdtA2wXMxLoB6vTxnuOk9nxmvxW5fmLFcyjzD-eP74M6RqJUG4bO9dMS_-pfDfREwRYyjVhLq5xc2dpNE-2_tdsoNzPJrTF7_KoCjyNN1opQI6HgtYIOXmmPr0W96Un2BMtBs5NjGMkwECAbclgYb_z22NoGHhbBdrRXJeyKhcJBO4xXME2NMW2bwUzv7Gfyb2gNxaC5g0Y6c5eHmDGdhHP2VZA_avmAot54q_vbYsHl8VswMn1PSjTK6OJ1BuAmAjwRQPITsPxDw_krJJtbGdn0r4W1NmUd9OQhe49GiTdJT2xkyar-ss6dLkDIeOiPeG-g7PI23oLhkAeJAWftBTp1AaRUJhwXmluDiCioAnwNl9JQcL6oXXdWMZV9mwqT4TvdTdse-n9M3_NANoKEjL0hBXvY5QhP-OXb4vu_3bntaBP6ofl8c-PkKjt3CXMMy1DZ9RrOWQ6IY3fco.3j5TMmLgkT0V18KMkBZWYQ","type":"text"},{"key":"access_token","value":"eyJraWQiOiJVM0xUOHI3Szk0Y2JEdm1hRExpYUxcLzRYcXB4OGtuSFpSUUJiWGdWZW9IRT0iLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJldmVudF9pZCI6IjBhOGZkZTRkLWMxODEtNDA2MC1iNTM1LWU3ZGVjNjYxNWIxOCIsInRva2VuX3VzZSI6ImFjY2VzcyIsInNjb3BlIjoiYXdzLmNvZ25pdG8uc2lnbmluLnVzZXIuYWRtaW4iLCJhdXRoX3RpbWUiOjE2OTAzMDc4NDYsImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC51cy1lYXN0LTIuYW1hem9uYXdzLmNvbVwvdXMtZWFzdC0yX253TGk4dUJuUyIsImV4cCI6MTY5MDQ4MDYzNCwiaWF0IjoxNjkwNDc3MDM0LCJqdGkiOiI0ODhkOTk0Yy0yOGNiLTQzZTUtOTFmMy1iOGEzOWMzYjdkMzEiLCJjbGllbnRfaWQiOiIxcTl1YjUxaTVhZ3NrbmlrdGt0OWowbnBtaSIsInVzZXJuYW1lIjoiMjZkM2U5NWUtYmRjYi00N2RlLTgwNmUtODViM2JjNTE3MjgyIn0.IDRB5BkmXXe2FHIxh6bOp8LoN-zFvURsEhotL5zcrxgVi6J_RF4g865QdLFgHVLO6GAoxUCk7F2_q_tswad6tA2jX4_x3BteMaHqrCd6Po1T5HUGVxEmxff6QXl9_3iOqKGoHQYMDHiGQbMmVZ8kPSKdfB3zZSSSwAMpSuAjNGCOR3J5FSIggZcs-REPr8J84kxx6If7tmYke8FTfQDdMpuhyPdPKTFiwvWNh7HFIhhftSTmX7wVAEer3rTeMf8fqz6M3AinDPQZGvqInOC-FO6f_IxQsdlZVNNOU0q9iFt7PMO1PQgc0_S0ycprRB_ZXM7c1d9CNS1vj6KqxHS8kg","type":"text"},{"key":"cognito_user_email","value":"justin@arcdealers.com","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"integration\": \"jira\",\n    \"publicToken\": \"abc123\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/merge/account-token","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:integration</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","merge","account-token"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c7921ac-2c4b-4d6a-9954-51fa61e8a180"},{"name":"Get link token","id":"138d668b-7044-490e-a360-cd1a5abcf965","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJraWQiOiI0alA5SWx0YWZUQU44Z25ObnUzcFJUYllEYlc0RTBVbWNBREN1bUlPMXdZPSIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJhdWQiOiIxcTl1YjUxaTVhZ3NrbmlrdGt0OWowbnBtaSIsImV2ZW50X2lkIjoiMGE4ZmRlNGQtYzE4MS00MDYwLWI1MzUtZTdkZWM2NjE1YjE4IiwidG9rZW5fdXNlIjoiaWQiLCJhdXRoX3RpbWUiOjE2OTAzMDc4NDYsImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC51cy1lYXN0LTIuYW1hem9uYXdzLmNvbVwvdXMtZWFzdC0yX253TGk4dUJuUyIsImNvZ25pdG86dXNlcm5hbWUiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiI0NTkiLCJleHAiOjE2OTA0ODA2MzQsImlhdCI6MTY5MDQ3NzAzNCwiZW1haWwiOiJqdXN0aW5AYXJjZGVhbGVycy5jb20ifQ.xCutDwZI9cFm8q-QspN2dq6q4EufmY5Yrek_dDKP7CITCQXqJmzJ4igJJV69h9H-zrTn4MMJ85GgNNrwwxrNmr10zHyht-CMTlLR-xVazCNA_0F1nHAYCOcEzdKOeG2g3O4YUtNK6AI8Gn5HEU3Mib8cUWJDtR-XCjhBHrHpf7KzQ6kx9IHM9tRoHpFz4CGHUfepPdnRtN1TCljFLS9P9TV44MXD2Qgfn-CGdjdSSgtnjVAF4e_1fV3Jm-xrI5ULkS2FlyuqzcfoSJy6Gjj_S9Y7o9vg2OtK0xRAdFL53y47UziVioJMOvU_vfPmdseOGDSY_9oHreJx9StJS7VvwA","type":"text"},{"key":"id_token","value":"eyJraWQiOiI0alA5SWx0YWZUQU44Z25ObnUzcFJUYllEYlc0RTBVbWNBREN1bUlPMXdZPSIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJhdWQiOiIxcTl1YjUxaTVhZ3NrbmlrdGt0OWowbnBtaSIsImV2ZW50X2lkIjoiMGE4ZmRlNGQtYzE4MS00MDYwLWI1MzUtZTdkZWM2NjE1YjE4IiwidG9rZW5fdXNlIjoiaWQiLCJhdXRoX3RpbWUiOjE2OTAzMDc4NDYsImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC51cy1lYXN0LTIuYW1hem9uYXdzLmNvbVwvdXMtZWFzdC0yX253TGk4dUJuUyIsImNvZ25pdG86dXNlcm5hbWUiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiI0NTkiLCJleHAiOjE2OTA0ODA2MzQsImlhdCI6MTY5MDQ3NzAzNCwiZW1haWwiOiJqdXN0aW5AYXJjZGVhbGVycy5jb20ifQ.xCutDwZI9cFm8q-QspN2dq6q4EufmY5Yrek_dDKP7CITCQXqJmzJ4igJJV69h9H-zrTn4MMJ85GgNNrwwxrNmr10zHyht-CMTlLR-xVazCNA_0F1nHAYCOcEzdKOeG2g3O4YUtNK6AI8Gn5HEU3Mib8cUWJDtR-XCjhBHrHpf7KzQ6kx9IHM9tRoHpFz4CGHUfepPdnRtN1TCljFLS9P9TV44MXD2Qgfn-CGdjdSSgtnjVAF4e_1fV3Jm-xrI5ULkS2FlyuqzcfoSJy6Gjj_S9Y7o9vg2OtK0xRAdFL53y47UziVioJMOvU_vfPmdseOGDSY_9oHreJx9StJS7VvwA","type":"text"},{"key":"refresh_token","value":"eyJjdHkiOiJKV1QiLCJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiUlNBLU9BRVAifQ.k2WPB82Ln-NUF3hjLwGiylcPr0xpeT9O9tteuW-5A9oAmsZYhcJCHsjoCDRt5T7JtwQQiRoJr8Dra1uOgIEk0w05g37RM_AqQtB0OagMnlRedgRrpdRrn3ZeCgOxwqr-lDrbV-4UhwoVnVSBps-PcGN-D6Cy5BmaNJ-yq9PoUBkRPbOsbKaEpGtIGRP5WW0WI6Q6Wsl2eMCpQ-x4RUjy5Mb8vL9swrFyRpVdG_oRlKyHeuLy7HLoLjiVaR3zlyxd7HI2meg-OKwJW3gqaOKU0cV0U1tbCfDV3BjwjtznoAiyIxPbvfyK5yIHeOX66lt-0lyiTH7sgWTIz8s2s0Vewg.OWF5cHk72nryjCr9.9fKANIgkH_yE6MByJScX3CK0eUdGaBprf-U25sR-rblRbEmUMa3uUcwZd3DtlBRTGDt3ugihZ-AUPAsl0_QTpu6O9yOwCadM0Zbr9yEykzbjGkzkMg8mK2XnyiSyZNzINOIJY_W4jNv2lI3VW5P1nOKaEkZgSKejBdFNrY_eBHxVLtnJT7QzbeSmZUz4fCkJbhvHOE7G4jWJI6yFxwRxPf1CN0Br3Jvu7bLZMCU2ERipXJ3MQv2MHQlpIa9Bfnj0EjOz7fe2pDzI11JcfIZ_p82lGYwPm4vOE4S09MvkuPg7wo-X2LhYGKnlbtkYuWGavz1q9B6iTM72ZwnIjr3D0yIzH62uJSo5WvsJ3Mxl2YrOABN_UJw9AUGkkvGM5Iry3-t_vDRpf9sJKQo36IPAcMWzLNZjnGJllJeeTXKcAy17NcggCYMPwWZ4kPOUfryM7rWRumT46gktfTPQQ3dcrKV8HeI-SZQwwq3tGaB-YAVuoRmvk2hcMTT-skeIgpRIIedS6pXCcSuoFqlpOy0ZtbVkLL6rt9Et_qZf-9rSMa30UwxXjzdTaERalH3ymBKvsSOVOt2naL9zG4D32T_iKqCGN3WxO7U7PD1HrN90ejaVP1ROsilHBIr9wuaJeco6yBgsBPtS_IQq5D69Vd9UGo_IpZt_PC_guOlosibxTy50-j8R4olxr2bsTURlyREYReMAaRCa80dyvcrsRmcDAbIIqEtU3d_ZGbU5se6jarl0LCBjPIW2CTDYHy1iK-IDYJIgaz4p02CKIu3A4IKzyPwi7o-GOs26lRAYbWHp_v_DLNn82b363aaFMjabDo88hG5d-xpvlX8qVcUAhXC20LhdfXYSEr-BFlsitrE8UDxdtA2wXMxLoB6vTxnuOk9nxmvxW5fmLFcyjzD-eP74M6RqJUG4bO9dMS_-pfDfREwRYyjVhLq5xc2dpNE-2_tdsoNzPJrTF7_KoCjyNN1opQI6HgtYIOXmmPr0W96Un2BMtBs5NjGMkwECAbclgYb_z22NoGHhbBdrRXJeyKhcJBO4xXME2NMW2bwUzv7Gfyb2gNxaC5g0Y6c5eHmDGdhHP2VZA_avmAot54q_vbYsHl8VswMn1PSjTK6OJ1BuAmAjwRQPITsPxDw_krJJtbGdn0r4W1NmUd9OQhe49GiTdJT2xkyar-ss6dLkDIeOiPeG-g7PI23oLhkAeJAWftBTp1AaRUJhwXmluDiCioAnwNl9JQcL6oXXdWMZV9mwqT4TvdTdse-n9M3_NANoKEjL0hBXvY5QhP-OXb4vu_3bntaBP6ofl8c-PkKjt3CXMMy1DZ9RrOWQ6IY3fco.3j5TMmLgkT0V18KMkBZWYQ","type":"text"},{"key":"access_token","value":"eyJraWQiOiJVM0xUOHI3Szk0Y2JEdm1hRExpYUxcLzRYcXB4OGtuSFpSUUJiWGdWZW9IRT0iLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJldmVudF9pZCI6IjBhOGZkZTRkLWMxODEtNDA2MC1iNTM1LWU3ZGVjNjYxNWIxOCIsInRva2VuX3VzZSI6ImFjY2VzcyIsInNjb3BlIjoiYXdzLmNvZ25pdG8uc2lnbmluLnVzZXIuYWRtaW4iLCJhdXRoX3RpbWUiOjE2OTAzMDc4NDYsImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC51cy1lYXN0LTIuYW1hem9uYXdzLmNvbVwvdXMtZWFzdC0yX253TGk4dUJuUyIsImV4cCI6MTY5MDQ4MDYzNCwiaWF0IjoxNjkwNDc3MDM0LCJqdGkiOiI0ODhkOTk0Yy0yOGNiLTQzZTUtOTFmMy1iOGEzOWMzYjdkMzEiLCJjbGllbnRfaWQiOiIxcTl1YjUxaTVhZ3NrbmlrdGt0OWowbnBtaSIsInVzZXJuYW1lIjoiMjZkM2U5NWUtYmRjYi00N2RlLTgwNmUtODViM2JjNTE3MjgyIn0.IDRB5BkmXXe2FHIxh6bOp8LoN-zFvURsEhotL5zcrxgVi6J_RF4g865QdLFgHVLO6GAoxUCk7F2_q_tswad6tA2jX4_x3BteMaHqrCd6Po1T5HUGVxEmxff6QXl9_3iOqKGoHQYMDHiGQbMmVZ8kPSKdfB3zZSSSwAMpSuAjNGCOR3J5FSIggZcs-REPr8J84kxx6If7tmYke8FTfQDdMpuhyPdPKTFiwvWNh7HFIhhftSTmX7wVAEer3rTeMf8fqz6M3AinDPQZGvqInOC-FO6f_IxQsdlZVNNOU0q9iFt7PMO1PQgc0_S0ycprRB_ZXM7c1d9CNS1vj6KqxHS8kg","type":"text"},{"key":"cognito_user_email","value":"justin@arcdealers.com","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/merge/link-token?integration=jira","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:integration</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","merge","link-token"],"host":["{{apiUrl}}"],"query":[{"key":"integration","value":"jira"}],"variable":[]}},"response":[],"_postman_id":"138d668b-7044-490e-a360-cd1a5abcf965"},{"name":"Get ticket metadata","id":"726ac92d-b01a-4aa7-ba36-28f362100943","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/merge/ticket-metadata?integration=jira","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:integration</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","merge","ticket-metadata"],"host":["{{apiUrl}}"],"query":[{"key":"integration","value":"jira"}],"variable":[]}},"response":[],"_postman_id":"726ac92d-b01a-4aa7-ba36-28f362100943"},{"name":"Delete account link ","id":"e75c5691-bd1a-4aca-887c-bb913d080b70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJraWQiOiI0alA5SWx0YWZUQU44Z25ObnUzcFJUYllEYlc0RTBVbWNBREN1bUlPMXdZPSIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJhdWQiOiIxcTl1YjUxaTVhZ3NrbmlrdGt0OWowbnBtaSIsImV2ZW50X2lkIjoiMGE4ZmRlNGQtYzE4MS00MDYwLWI1MzUtZTdkZWM2NjE1YjE4IiwidG9rZW5fdXNlIjoiaWQiLCJhdXRoX3RpbWUiOjE2OTAzMDc4NDYsImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC51cy1lYXN0LTIuYW1hem9uYXdzLmNvbVwvdXMtZWFzdC0yX253TGk4dUJuUyIsImNvZ25pdG86dXNlcm5hbWUiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiI0NTkiLCJleHAiOjE2OTA0ODA2MzQsImlhdCI6MTY5MDQ3NzAzNCwiZW1haWwiOiJqdXN0aW5AYXJjZGVhbGVycy5jb20ifQ.xCutDwZI9cFm8q-QspN2dq6q4EufmY5Yrek_dDKP7CITCQXqJmzJ4igJJV69h9H-zrTn4MMJ85GgNNrwwxrNmr10zHyht-CMTlLR-xVazCNA_0F1nHAYCOcEzdKOeG2g3O4YUtNK6AI8Gn5HEU3Mib8cUWJDtR-XCjhBHrHpf7KzQ6kx9IHM9tRoHpFz4CGHUfepPdnRtN1TCljFLS9P9TV44MXD2Qgfn-CGdjdSSgtnjVAF4e_1fV3Jm-xrI5ULkS2FlyuqzcfoSJy6Gjj_S9Y7o9vg2OtK0xRAdFL53y47UziVioJMOvU_vfPmdseOGDSY_9oHreJx9StJS7VvwA","type":"text"},{"key":"id_token","value":"eyJraWQiOiI0alA5SWx0YWZUQU44Z25ObnUzcFJUYllEYlc0RTBVbWNBREN1bUlPMXdZPSIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJhdWQiOiIxcTl1YjUxaTVhZ3NrbmlrdGt0OWowbnBtaSIsImV2ZW50X2lkIjoiMGE4ZmRlNGQtYzE4MS00MDYwLWI1MzUtZTdkZWM2NjE1YjE4IiwidG9rZW5fdXNlIjoiaWQiLCJhdXRoX3RpbWUiOjE2OTAzMDc4NDYsImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC51cy1lYXN0LTIuYW1hem9uYXdzLmNvbVwvdXMtZWFzdC0yX253TGk4dUJuUyIsImNvZ25pdG86dXNlcm5hbWUiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiI0NTkiLCJleHAiOjE2OTA0ODA2MzQsImlhdCI6MTY5MDQ3NzAzNCwiZW1haWwiOiJqdXN0aW5AYXJjZGVhbGVycy5jb20ifQ.xCutDwZI9cFm8q-QspN2dq6q4EufmY5Yrek_dDKP7CITCQXqJmzJ4igJJV69h9H-zrTn4MMJ85GgNNrwwxrNmr10zHyht-CMTlLR-xVazCNA_0F1nHAYCOcEzdKOeG2g3O4YUtNK6AI8Gn5HEU3Mib8cUWJDtR-XCjhBHrHpf7KzQ6kx9IHM9tRoHpFz4CGHUfepPdnRtN1TCljFLS9P9TV44MXD2Qgfn-CGdjdSSgtnjVAF4e_1fV3Jm-xrI5ULkS2FlyuqzcfoSJy6Gjj_S9Y7o9vg2OtK0xRAdFL53y47UziVioJMOvU_vfPmdseOGDSY_9oHreJx9StJS7VvwA","type":"text"},{"key":"refresh_token","value":"eyJjdHkiOiJKV1QiLCJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiUlNBLU9BRVAifQ.k2WPB82Ln-NUF3hjLwGiylcPr0xpeT9O9tteuW-5A9oAmsZYhcJCHsjoCDRt5T7JtwQQiRoJr8Dra1uOgIEk0w05g37RM_AqQtB0OagMnlRedgRrpdRrn3ZeCgOxwqr-lDrbV-4UhwoVnVSBps-PcGN-D6Cy5BmaNJ-yq9PoUBkRPbOsbKaEpGtIGRP5WW0WI6Q6Wsl2eMCpQ-x4RUjy5Mb8vL9swrFyRpVdG_oRlKyHeuLy7HLoLjiVaR3zlyxd7HI2meg-OKwJW3gqaOKU0cV0U1tbCfDV3BjwjtznoAiyIxPbvfyK5yIHeOX66lt-0lyiTH7sgWTIz8s2s0Vewg.OWF5cHk72nryjCr9.9fKANIgkH_yE6MByJScX3CK0eUdGaBprf-U25sR-rblRbEmUMa3uUcwZd3DtlBRTGDt3ugihZ-AUPAsl0_QTpu6O9yOwCadM0Zbr9yEykzbjGkzkMg8mK2XnyiSyZNzINOIJY_W4jNv2lI3VW5P1nOKaEkZgSKejBdFNrY_eBHxVLtnJT7QzbeSmZUz4fCkJbhvHOE7G4jWJI6yFxwRxPf1CN0Br3Jvu7bLZMCU2ERipXJ3MQv2MHQlpIa9Bfnj0EjOz7fe2pDzI11JcfIZ_p82lGYwPm4vOE4S09MvkuPg7wo-X2LhYGKnlbtkYuWGavz1q9B6iTM72ZwnIjr3D0yIzH62uJSo5WvsJ3Mxl2YrOABN_UJw9AUGkkvGM5Iry3-t_vDRpf9sJKQo36IPAcMWzLNZjnGJllJeeTXKcAy17NcggCYMPwWZ4kPOUfryM7rWRumT46gktfTPQQ3dcrKV8HeI-SZQwwq3tGaB-YAVuoRmvk2hcMTT-skeIgpRIIedS6pXCcSuoFqlpOy0ZtbVkLL6rt9Et_qZf-9rSMa30UwxXjzdTaERalH3ymBKvsSOVOt2naL9zG4D32T_iKqCGN3WxO7U7PD1HrN90ejaVP1ROsilHBIr9wuaJeco6yBgsBPtS_IQq5D69Vd9UGo_IpZt_PC_guOlosibxTy50-j8R4olxr2bsTURlyREYReMAaRCa80dyvcrsRmcDAbIIqEtU3d_ZGbU5se6jarl0LCBjPIW2CTDYHy1iK-IDYJIgaz4p02CKIu3A4IKzyPwi7o-GOs26lRAYbWHp_v_DLNn82b363aaFMjabDo88hG5d-xpvlX8qVcUAhXC20LhdfXYSEr-BFlsitrE8UDxdtA2wXMxLoB6vTxnuOk9nxmvxW5fmLFcyjzD-eP74M6RqJUG4bO9dMS_-pfDfREwRYyjVhLq5xc2dpNE-2_tdsoNzPJrTF7_KoCjyNN1opQI6HgtYIOXmmPr0W96Un2BMtBs5NjGMkwECAbclgYb_z22NoGHhbBdrRXJeyKhcJBO4xXME2NMW2bwUzv7Gfyb2gNxaC5g0Y6c5eHmDGdhHP2VZA_avmAot54q_vbYsHl8VswMn1PSjTK6OJ1BuAmAjwRQPITsPxDw_krJJtbGdn0r4W1NmUd9OQhe49GiTdJT2xkyar-ss6dLkDIeOiPeG-g7PI23oLhkAeJAWftBTp1AaRUJhwXmluDiCioAnwNl9JQcL6oXXdWMZV9mwqT4TvdTdse-n9M3_NANoKEjL0hBXvY5QhP-OXb4vu_3bntaBP6ofl8c-PkKjt3CXMMy1DZ9RrOWQ6IY3fco.3j5TMmLgkT0V18KMkBZWYQ","type":"text"},{"key":"access_token","value":"eyJraWQiOiJVM0xUOHI3Szk0Y2JEdm1hRExpYUxcLzRYcXB4OGtuSFpSUUJiWGdWZW9IRT0iLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiIyNmQzZTk1ZS1iZGNiLTQ3ZGUtODA2ZS04NWIzYmM1MTcyODIiLCJldmVudF9pZCI6IjBhOGZkZTRkLWMxODEtNDA2MC1iNTM1LWU3ZGVjNjYxNWIxOCIsInRva2VuX3VzZSI6ImFjY2VzcyIsInNjb3BlIjoiYXdzLmNvZ25pdG8uc2lnbmluLnVzZXIuYWRtaW4iLCJhdXRoX3RpbWUiOjE2OTAzMDc4NDYsImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC51cy1lYXN0LTIuYW1hem9uYXdzLmNvbVwvdXMtZWFzdC0yX253TGk4dUJuUyIsImV4cCI6MTY5MDQ4MDYzNCwiaWF0IjoxNjkwNDc3MDM0LCJqdGkiOiI0ODhkOTk0Yy0yOGNiLTQzZTUtOTFmMy1iOGEzOWMzYjdkMzEiLCJjbGllbnRfaWQiOiIxcTl1YjUxaTVhZ3NrbmlrdGt0OWowbnBtaSIsInVzZXJuYW1lIjoiMjZkM2U5NWUtYmRjYi00N2RlLTgwNmUtODViM2JjNTE3MjgyIn0.IDRB5BkmXXe2FHIxh6bOp8LoN-zFvURsEhotL5zcrxgVi6J_RF4g865QdLFgHVLO6GAoxUCk7F2_q_tswad6tA2jX4_x3BteMaHqrCd6Po1T5HUGVxEmxff6QXl9_3iOqKGoHQYMDHiGQbMmVZ8kPSKdfB3zZSSSwAMpSuAjNGCOR3J5FSIggZcs-REPr8J84kxx6If7tmYke8FTfQDdMpuhyPdPKTFiwvWNh7HFIhhftSTmX7wVAEer3rTeMf8fqz6M3AinDPQZGvqInOC-FO6f_IxQsdlZVNNOU0q9iFt7PMO1PQgc0_S0ycprRB_ZXM7c1d9CNS1vj6KqxHS8kg","type":"text"},{"key":"cognito_user_email","value":"justin@arcdealers.com","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"integration\": \"jira\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/merge/link","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>delete:integration</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","merge","link"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e75c5691-bd1a-4aca-887c-bb913d080b70"},{"name":"Create Jira Ticket","id":"5ec5bb7a-1d97-4d16-b851-2773a48bd6f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"integration\":\"jira\",\"collectionId\":\"5b9f0238-8779-4ca8-82a4-9a2206fc60ec\",\"issueType\":\"Task\",\"status\":\"IN_PROGRESS\",\"summary\":\"summary\",\"description\":\"desc\",\"assigneeIds\":[\"0c2dacd8-f82c-467b-81a6-c44d5784f0c4\"],\"priority\":\"\",\"labels\":[\"asdfasdf\",\"test2\"],\"creatorId\":\"48449d7c-8808-4bdf-849a-a17055844310\",\"type\":\"vulnerability\",\"id\":\"63702eae260542146b10f8fb\"}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/merge/ticket","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:ticket</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","merge","ticket"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ec5bb7a-1d97-4d16-b851-2773a48bd6f6"},{"name":"Get tickets for an asset or vuln","id":"41cf769e-74cc-40a4-aa4a-596532da23c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"integration\":\"jira\",\"collectionId\":\"5b9f0238-8779-4ca8-82a4-9a2206fc60ec\",\"issueType\":\"Task\",\"status\":\"IN_PROGRESS\",\"summary\":\"summary\",\"description\":\"desc\",\"assigneeIds\":[\"0c2dacd8-f82c-467b-81a6-c44d5784f0c4\"],\"priority\":\"\",\"labels\":[\"asdfasdf\",\"test2\"],\"creatorId\":\"48449d7c-8808-4bdf-849a-a17055844310\",\"type\":\"vulnerability\",\"id\":\"63702eae260542146b10f8fb\"}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/integration/merge/tickets?entityType=vulnerability&entityId=63702eae260542146b10f8fb","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:integration</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["integration","merge","tickets"],"host":["{{apiUrl}}"],"query":[{"key":"entityType","value":"vulnerability"},{"key":"entityId","value":"63702eae260542146b10f8fb"}],"variable":[]}},"response":[],"_postman_id":"41cf769e-74cc-40a4-aa4a-596532da23c4"}],"id":"ec79cb40-b03f-42ea-aca1-66218efcc1c7","_postman_id":"ec79cb40-b03f-42ea-aca1-66218efcc1c7","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Triage","item":[{"name":"Triage vulnerabilities","event":[{"listen":"test","script":{"id":"a63f43f1-47bf-4785-a458-418dc2009088","exec":["pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response is a JSON object with success, errors, and data properties\", function () {","    pm.expect(pm.response.json()).to.be.an('object').that.has.all.keys('success', 'errors', 'data');","});","","pm.test(\"Response time is less than 500ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(500);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"6d660832-8cc9-4556-b7fc-3778e932cda4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // not affacted\n    // \"cveIds\": [\"CVE-2014-2524\"],\n    // \"details\": \"\",\n    // \"justification\": \"componentNotPresent\",\n    // \"organizationAssetId\": \"65ee8150e80f9c4ab90fce2c\",\n    // \"scope\": \"thisAssetVersionOnly\",\n    // \"triageStatusName\": \"notAffected\"\n    ////affacted\n    // \"cveIds\": [\"CVE-2014-2524\"],\n    // \"details\": \"test\",\n    // \"justification\": \"\",\n    // \"organizationAssetId\": \"65ee8150e80f9c4ab90fce2c\",\n    // \"scope\": \"thisAssetVersionOnly\",\n    // \"triageStatusName\": \"affected\"\n\n    \"cveIds\": [\"CVE-2014-2524\"],\n    \"details\": \"\",\n    \"justification\":\"vulnerableCodeNotPresent\", // componentNotPresent | vulnerableCodeNotPresent | vulnerableCodeIsNotInExecutePath | vulnerableCodeCannotBeControlledByAdvesary | inlineMitigationsAlreadyExist | otherProvideImpactStatement\n    \"organizationAssetId\": \"65ee8150e80f9c4ab90fce2c\",\n    \"scope\": \"thisVulnAccrossAnyAssetInMyEnvironment\",\n    \"triageStatusName\": \"notAffected\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/triage/","description":"<p>Set a vulnerability's triage status.</p>\n<h2 id=\"authentication\"><strong>Authentication</strong></h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:vulnerability-triage</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["triage",""],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ff844efc-5c8c-487d-b5f5-401c50776f23","name":"Triage vulnerabilities","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // not affacted\n    // \"cveIds\": [\"CVE-2014-2524\"],\n    // \"details\": \"\",\n    // \"justification\": \"componentNotPresent\",\n    // \"organizationAssetId\": \"65ee8150e80f9c4ab90fce2c\",\n    // \"scope\": \"thisAssetVersionOnly\",\n    // \"triageStatusName\": \"notAffected\"\n    ////affacted\n    // \"cveIds\": [\"CVE-2014-2524\"],\n    // \"details\": \"test\",\n    // \"justification\": \"\",\n    // \"organizationAssetId\": \"65ee8150e80f9c4ab90fce2c\",\n    // \"scope\": \"thisAssetVersionOnly\",\n    // \"triageStatusName\": \"affected\"\n\n    \"triageStatusName\":\"notAffected\",\n    \"scope\":\"thisAssetVersionOnly\",\n    \"justification\":\"vulnerableCodeNotPresent\", // componentNotPresent | vulnerableCodeNotPresent | vulnerableCodeIsNotInExecutePath | vulnerableCodeCannotBeControlledByAdvesary | inlineMitigationsAlreadyExist | otherProvideImpactStatement\n    \"details\":\"These are details\",\n    \"cveIds\":[\"CVE-2007-1397\",\"CVE-2007-6109\"],\n    \"organizationAssetId\":\"676162ddc79e50b147332739\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/triage"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6d660832-8cc9-4556-b7fc-3778e932cda4"},{"name":"Fetch statuses","event":[{"listen":"test","script":{"id":"6fd34905-7950-408c-bcec-ea3952f248cf","exec":["// Construct the URL using the environment or global variable","var apiUrl = pm.variables.get(\"apiUrl\"); // Ensure this is correctly retrieving your API URL","var apiToken = pm.variables.get(\"apiToken\"); // Retrieve the API token from Postman's environment or global variables","// pm.environment.get(\"variable_key\");","","//Triage status names","//\"notAffected\": \"Not Affected\",","//\"affected\": \"Affected\",","//\"underInvestigation\": \"Under Investigation\",","//\"fixed\": \"Fixed\"","","","","pm.test(\"Triage CVE-2022-30123\", function () {","    console.log('here2')","    console.log(apiToken)","    pm.sendRequest({","        url: apiUrl + '/triage', // Concatenating the base URL and endpoint","        method: 'POST',","        headers: { // Correctly plural and adding Authorization","            'Content-Type': 'application/json',","            'Authorization': 'Bearer ' + apiToken // Add the API token here","        },","        body: {","            mode: 'raw',","            raw: JSON.stringify({","                cveIds: [\"CVE-2022-30123\"],","                details: \"test\",","                justification: \"\",","                organizationAssetId: \"65c576af4d8e9919ce6bd0c8\",","                scope: \"thisAssetVersionOnly\",","                triageStatusName: \"notAffected\"","            })","        }","    }, function (err, response) {","        if (err) {","            console.log(err);","        } else {","            var responseData = response.json(); // Ensure the response is indeed JSON","            console.log('here3')","            console.log(responseData)","            // Modify this test according to what you're actually expecting in the response","            pm.test(\"Data matches criteria\", function () {","                pm.expect(responseData).to.have.property('someField'); // Example test, change as needed","            });","        }","    });","});","","","","// pm.test(\"Response status code is 200\", function () {","//     console.log(apiToken)","//     pm.response.to.have.status(200);","// });","","// pm.test(\"Response is in JSON format\", function () {","//     pm.response.to.have.header(\"Content-Type\", \"application/json\");","// });","","// pm.test(\"Response has 'success' property with a boolean value\", function () {","//     pm.expect(pm.response.json()).to.have.property('success').that.is.a('boolean');","// });","","// pm.test(\"Response has 'errors' property that is an array\", function () {","//     pm.expect(pm.response.json()).to.have.property('errors').that.is.an('array');","// });","","// pm.test(\"Response has 'data' property that is an array\", function () {","//     pm.expect(pm.response.json()).to.have.property('data').that.is.an('array');","// });","","// pm.test(\"Response has non-empty 'organizationId' property\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.be.an('object');","//     pm.expect(responseData.organizationId).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Value should not be empty\");","// });","","","// pm.test(\"Name property is a non-empty string\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.be.an('object');","//     pm.expect(responseData.data).to.be.an('array');","    ","//     responseData.data.forEach(function(item) {","//         pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//     });","// });","","","// pm.test(\"Response has non-empty 'userId' property\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.have.property('data').that.is.an('array');","//     responseData.data.forEach(function(item) {","//         pm.expect(item).to.have.property('userId').that.is.a('string').and.not.empty;","//     });","// });","","// pm.test(\"Response time is less than 200ms\", function () {","//   pm.expect(pm.response.responseTime).to.be.below(200);","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"21bc3209-ad37-4ee0-98ea-ce96f2291381","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"followAuthorizationHeader":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/triage/statuses","description":"<p>Fetch a list of all vulnerabilities that have been triaged.</p>\n<h2 id=\"authentication\"><strong>Authentication</strong></h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability-triage</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["triage","statuses"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"098c568b-8fea-4812-a97f-6f49f2110c66","name":"Fetch statuses","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/triage/statuses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://http://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4098"},{"key":"ETag","value":"W/\"1002-oP54XrIuVHTFolEuOxxs+80Ojpc\""},{"key":"Date","value":"Thu, 14 Mar 2024 01:48:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"_id\": \"659873eeea12caab80b37ccf\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"affected\",\n            \"userId\": \"6368dfe62fba07feec871841\",\n            \"dateCreated\": \"2024-01-05T21:26:06.656Z\",\n            \"dateModified\": \"2024-01-05T21:26:06.656Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"659f5a80c11c417c665258ff\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"640f4937ea092e5301108cb9\",\n            \"dateCreated\": \"2024-01-11T03:03:28.966Z\",\n            \"dateModified\": \"2024-01-11T03:03:28.966Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"659f5b94207c1e4723f04eef\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"fixed\",\n            \"userId\": \"640f4937ea092e5301108cb9\",\n            \"dateCreated\": \"2024-01-11T03:08:04.349Z\",\n            \"dateModified\": \"2024-01-11T03:08:04.349Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"659f5edf207c1e4723f0ce2d\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"affected\",\n            \"userId\": \"640f4937ea092e5301108cb9\",\n            \"dateCreated\": \"2024-01-11T03:22:07.636Z\",\n            \"dateModified\": \"2024-01-11T03:22:07.636Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a031499622ab6dea12602a\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"underInvestigation\",\n            \"userId\": \"640f4937ea092e5301108cb9\",\n            \"dateCreated\": \"2024-01-11T18:19:53.711Z\",\n            \"dateModified\": \"2024-01-11T18:19:53.711Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a031939622ab6dea126eed\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"6377fd86e21cd9d28fc16580\",\n            \"dateCreated\": \"2024-01-11T18:21:07.418Z\",\n            \"dateModified\": \"2024-01-11T18:21:07.418Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a8929104326236a7f4c2e4\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"affected\",\n            \"userId\": \"636acea85b664ba95b2d290a\",\n            \"dateCreated\": \"2024-01-18T02:53:05.792Z\",\n            \"dateModified\": \"2024-01-18T02:53:05.792Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a89585a78a0bf2cbcbb167\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"fixed\",\n            \"userId\": \"636acea85b664ba95b2d290a\",\n            \"dateCreated\": \"2024-01-18T03:05:41.430Z\",\n            \"dateModified\": \"2024-01-18T03:05:41.430Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a92636f6d3a175dc727310\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"636acea85b664ba95b2d290a\",\n            \"dateCreated\": \"2024-01-18T13:23:02.705Z\",\n            \"dateModified\": \"2024-01-18T13:23:02.705Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a9ebea915fe02fe445d820\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"6369053fa1d1740b3a2dbc87\",\n            \"dateCreated\": \"2024-01-19T03:26:34.605Z\",\n            \"dateModified\": \"2024-01-19T03:26:34.605Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a9ec174635b0267f4afc82\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"affected\",\n            \"userId\": \"6369053fa1d1740b3a2dbc87\",\n            \"dateCreated\": \"2024-01-19T03:27:19.035Z\",\n            \"dateModified\": \"2024-01-19T03:27:19.035Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a9f0d336dadeb3479ee5db\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"fixed\",\n            \"userId\": \"63743e65c3be6f7a1232d309\",\n            \"dateCreated\": \"2024-01-19T03:47:31.192Z\",\n            \"dateModified\": \"2024-01-19T03:47:31.192Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65aad80c93b29fab258e2237\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"6368dfe62fba07feec871841\",\n            \"dateCreated\": \"2024-01-19T20:14:04.571Z\",\n            \"dateModified\": \"2024-01-19T20:14:04.571Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65c5b181ed0b92637eb25118\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"63743e65c3be6f7a1232d309\",\n            \"dateCreated\": \"2024-02-09T05:00:49.504Z\",\n            \"dateModified\": \"2024-02-09T05:00:49.504Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65c97b3772803a3e1f818196\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"affected\",\n            \"userId\": \"63743e65c3be6f7a1232d309\",\n            \"dateCreated\": \"2024-02-12T01:58:15.586Z\",\n            \"dateModified\": \"2024-02-12T01:58:15.586Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65d3754cbaffe135080c7b15\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"65ccfa35208303e48b912a99\",\n            \"dateCreated\": \"2024-02-19T15:35:40.677Z\",\n            \"dateModified\": \"2024-02-19T15:35:40.677Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65d3774fbaffe135080ccb89\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"fixed\",\n            \"userId\": \"65ccfa35208303e48b912a99\",\n            \"dateCreated\": \"2024-02-19T15:44:15.473Z\",\n            \"dateModified\": \"2024-02-19T15:44:15.473Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65e7a66f94c728e93c614526\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"underInvestigation\",\n            \"userId\": \"63743e65c3be6f7a1232d309\",\n            \"dateCreated\": \"2024-03-05T23:10:39.403Z\",\n            \"dateModified\": \"2024-03-05T23:10:39.403Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"21bc3209-ad37-4ee0-98ea-ce96f2291381"},{"name":"Fetch History","event":[{"listen":"test","script":{"id":"6fd34905-7950-408c-bcec-ea3952f248cf","exec":["// Construct the URL using the environment or global variable","var apiUrl = pm.variables.get(\"apiUrl\"); // Ensure this is correctly retrieving your API URL","var apiToken = pm.variables.get(\"apiToken\"); // Retrieve the API token from Postman's environment or global variables","// pm.environment.get(\"variable_key\");","","//Triage status names","//\"notAffected\": \"Not Affected\",","//\"affected\": \"Affected\",","//\"underInvestigation\": \"Under Investigation\",","//\"fixed\": \"Fixed\"","","","","pm.test(\"Triage CVE-2022-30123\", function () {","    console.log('here2')","    console.log(apiToken)","    pm.sendRequest({","        url: apiUrl + '/triage', // Concatenating the base URL and endpoint","        method: 'POST',","        headers: { // Correctly plural and adding Authorization","            'Content-Type': 'application/json',","            'Authorization': 'Bearer ' + apiToken // Add the API token here","        },","        body: {","            mode: 'raw',","            raw: JSON.stringify({","                cveIds: [\"CVE-2022-30123\"],","                details: \"test\",","                justification: \"\",","                organizationAssetId: \"65c576af4d8e9919ce6bd0c8\",","                scope: \"thisAssetVersionOnly\",","                triageStatusName: \"notAffected\"","            })","        }","    }, function (err, response) {","        if (err) {","            console.log(err);","        } else {","            var responseData = response.json(); // Ensure the response is indeed JSON","            console.log('here3')","            console.log(responseData)","            // Modify this test according to what you're actually expecting in the response","            pm.test(\"Data matches criteria\", function () {","                pm.expect(responseData).to.have.property('someField'); // Example test, change as needed","            });","        }","    });","});","","","","// pm.test(\"Response status code is 200\", function () {","//     console.log(apiToken)","//     pm.response.to.have.status(200);","// });","","// pm.test(\"Response is in JSON format\", function () {","//     pm.response.to.have.header(\"Content-Type\", \"application/json\");","// });","","// pm.test(\"Response has 'success' property with a boolean value\", function () {","//     pm.expect(pm.response.json()).to.have.property('success').that.is.a('boolean');","// });","","// pm.test(\"Response has 'errors' property that is an array\", function () {","//     pm.expect(pm.response.json()).to.have.property('errors').that.is.an('array');","// });","","// pm.test(\"Response has 'data' property that is an array\", function () {","//     pm.expect(pm.response.json()).to.have.property('data').that.is.an('array');","// });","","// pm.test(\"Response has non-empty 'organizationId' property\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.be.an('object');","//     pm.expect(responseData.organizationId).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Value should not be empty\");","// });","","","// pm.test(\"Name property is a non-empty string\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.be.an('object');","//     pm.expect(responseData.data).to.be.an('array');","    ","//     responseData.data.forEach(function(item) {","//         pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//     });","// });","","","// pm.test(\"Response has non-empty 'userId' property\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.have.property('data').that.is.an('array');","//     responseData.data.forEach(function(item) {","//         pm.expect(item).to.have.property('userId').that.is.a('string').and.not.empty;","//     });","// });","","// pm.test(\"Response time is less than 200ms\", function () {","//   pm.expect(pm.response.responseTime).to.be.below(200);","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"988ac568-3864-440e-bbe2-58d9554a9677","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"followAuthorizationHeader":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/triage/history?organizationAssetId=&cveId=","description":"<p>This endpoint makes an HTTP GET request to <code>/triage/history</code> to fetch a list of all triage changes made for an asset and cveId. Required fields are organizationAssetId and cveId</p>\n<h2 id=\"authentication\"><strong>Authentication</strong></h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:vulnerability-triage</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h4 id=\"response\">Response</h4>\n<p>The response for this request can be represented as a JSON schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"success\": {\n      \"type\": \"boolean\"\n    },\n    \"errors\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"string\"\n      }\n    },\n    \"data\": {\n      \"type\": \"array\"\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["triage","history"],"host":["{{apiUrl}}"],"query":[{"description":{"content":"<p>Required field - target Asset Id</p>\n","type":"text/plain"},"key":"organizationAssetId","value":""},{"description":{"content":"<p>Required filed - target vulnerability Id</p>\n","type":"text/plain"},"key":"cveId","value":""}],"variable":[]}},"response":[{"id":"cef10af8-f63d-4f7a-bb03-b8a4d2fcb20b","name":"Fetch statuses","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/triage/statuses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://http://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4098"},{"key":"ETag","value":"W/\"1002-oP54XrIuVHTFolEuOxxs+80Ojpc\""},{"key":"Date","value":"Thu, 14 Mar 2024 01:48:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"_id\": \"659873eeea12caab80b37ccf\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"affected\",\n            \"userId\": \"6368dfe62fba07feec871841\",\n            \"dateCreated\": \"2024-01-05T21:26:06.656Z\",\n            \"dateModified\": \"2024-01-05T21:26:06.656Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"659f5a80c11c417c665258ff\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"640f4937ea092e5301108cb9\",\n            \"dateCreated\": \"2024-01-11T03:03:28.966Z\",\n            \"dateModified\": \"2024-01-11T03:03:28.966Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"659f5b94207c1e4723f04eef\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"fixed\",\n            \"userId\": \"640f4937ea092e5301108cb9\",\n            \"dateCreated\": \"2024-01-11T03:08:04.349Z\",\n            \"dateModified\": \"2024-01-11T03:08:04.349Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"659f5edf207c1e4723f0ce2d\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"affected\",\n            \"userId\": \"640f4937ea092e5301108cb9\",\n            \"dateCreated\": \"2024-01-11T03:22:07.636Z\",\n            \"dateModified\": \"2024-01-11T03:22:07.636Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a031499622ab6dea12602a\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"underInvestigation\",\n            \"userId\": \"640f4937ea092e5301108cb9\",\n            \"dateCreated\": \"2024-01-11T18:19:53.711Z\",\n            \"dateModified\": \"2024-01-11T18:19:53.711Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a031939622ab6dea126eed\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"6377fd86e21cd9d28fc16580\",\n            \"dateCreated\": \"2024-01-11T18:21:07.418Z\",\n            \"dateModified\": \"2024-01-11T18:21:07.418Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a8929104326236a7f4c2e4\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"affected\",\n            \"userId\": \"636acea85b664ba95b2d290a\",\n            \"dateCreated\": \"2024-01-18T02:53:05.792Z\",\n            \"dateModified\": \"2024-01-18T02:53:05.792Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a89585a78a0bf2cbcbb167\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"fixed\",\n            \"userId\": \"636acea85b664ba95b2d290a\",\n            \"dateCreated\": \"2024-01-18T03:05:41.430Z\",\n            \"dateModified\": \"2024-01-18T03:05:41.430Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a92636f6d3a175dc727310\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"636acea85b664ba95b2d290a\",\n            \"dateCreated\": \"2024-01-18T13:23:02.705Z\",\n            \"dateModified\": \"2024-01-18T13:23:02.705Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a9ebea915fe02fe445d820\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"6369053fa1d1740b3a2dbc87\",\n            \"dateCreated\": \"2024-01-19T03:26:34.605Z\",\n            \"dateModified\": \"2024-01-19T03:26:34.605Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a9ec174635b0267f4afc82\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"affected\",\n            \"userId\": \"6369053fa1d1740b3a2dbc87\",\n            \"dateCreated\": \"2024-01-19T03:27:19.035Z\",\n            \"dateModified\": \"2024-01-19T03:27:19.035Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a9f0d336dadeb3479ee5db\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"fixed\",\n            \"userId\": \"63743e65c3be6f7a1232d309\",\n            \"dateCreated\": \"2024-01-19T03:47:31.192Z\",\n            \"dateModified\": \"2024-01-19T03:47:31.192Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65aad80c93b29fab258e2237\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"6368dfe62fba07feec871841\",\n            \"dateCreated\": \"2024-01-19T20:14:04.571Z\",\n            \"dateModified\": \"2024-01-19T20:14:04.571Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65c5b181ed0b92637eb25118\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"63743e65c3be6f7a1232d309\",\n            \"dateCreated\": \"2024-02-09T05:00:49.504Z\",\n            \"dateModified\": \"2024-02-09T05:00:49.504Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65c97b3772803a3e1f818196\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"affected\",\n            \"userId\": \"63743e65c3be6f7a1232d309\",\n            \"dateCreated\": \"2024-02-12T01:58:15.586Z\",\n            \"dateModified\": \"2024-02-12T01:58:15.586Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65d3754cbaffe135080c7b15\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"notAffected\",\n            \"userId\": \"65ccfa35208303e48b912a99\",\n            \"dateCreated\": \"2024-02-19T15:35:40.677Z\",\n            \"dateModified\": \"2024-02-19T15:35:40.677Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65d3774fbaffe135080ccb89\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"fixed\",\n            \"userId\": \"65ccfa35208303e48b912a99\",\n            \"dateCreated\": \"2024-02-19T15:44:15.473Z\",\n            \"dateModified\": \"2024-02-19T15:44:15.473Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65e7a66f94c728e93c614526\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"name\": \"underInvestigation\",\n            \"userId\": \"63743e65c3be6f7a1232d309\",\n            \"dateCreated\": \"2024-03-05T23:10:39.403Z\",\n            \"dateModified\": \"2024-03-05T23:10:39.403Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"988ac568-3864-440e-bbe2-58d9554a9677"}],"id":"74843b87-be43-4a23-a8b9-78fa0acd60bc","_postman_id":"74843b87-be43-4a23-a8b9-78fa0acd60bc","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Pre-Release: SLA","item":[{"name":"Set Settings","event":[{"listen":"test","script":{"id":"a63f43f1-47bf-4785-a458-418dc2009088","exec":["pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response is a JSON object with success, errors, and data properties\", function () {","    pm.expect(pm.response.json()).to.be.an('object').that.has.all.keys('success', 'errors', 'data');","});","","pm.test(\"Response time is less than 500ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(500);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d3f46a38-f75b-4484-a10b-ff73323196ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"status\": \"enabled\",\n    \"riskCategory\": {\n        \"onKev\": {\n            \"description\": \"test\",\n            \"criteria\": \"true\",\n            \"remediationTimeFrame\": \"8760h\",\n            \"status\": \"enabled\"\n        },\n        \"high\": {\n            \"description\": \"test\",\n            \"criteria\": [2.1, 3.1],\n            \"remediationTimeFrame\": \"2h\",\n            \"status\": \"enabled\"\n        },\n        \"low\": {\n            \"description\": \"test\",\n            \"criteria\": [3.1, 9.3],\n            \"remediationTimeFrame\": \"2h\",\n            \"status\": \"disabled\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/sla/setting","description":"<h3 id=\"route-documentation\">Route Documentation</h3>\n<h4 id=\"post-slasetting\">POST <code>/sla/setting</code></h4>\n<p><strong>Description:</strong><br />Updates the SLA settings for an organization. If the settings do not already exist, a new record is created.</p>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li><p><code>status</code> (required): <code>\"enabled\"</code> or <code>\"disabled\"</code></p>\n</li>\n<li><p><code>riskCategory</code> (required if <code>status</code> is <code>\"enabled\"</code>): An object containing the risk categories and their respective criteria and remediation time frames.</p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>update:sla</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sla","setting"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3ad8faf4-09ab-404e-af28-cd164c07bc3d","name":"Set Settings","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"status\": \"enabled\",\n    \"riskCategory\": {\n        \"onKev\": {\n            \"description\": \"test\",\n            \"criteria\": \"true\",\n            \"remediationTimeFrame\": \"2h\",\n            \"status\": \"enabled\"\n        },\n        \"high\": {\n            \"description\": \"test\",\n            \"criteria\": [2.1, 3.1],\n            \"remediationTimeFrame\": \"2h\",\n            \"status\": \"enabled\"\n        },\n        \"low\": {\n            \"description\": \"test\",\n            \"criteria\": [3.1, 9.3],\n            \"remediationTimeFrame\": \"2h\",\n            \"status\": \"disabled\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/sla/setting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://http://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1152"},{"key":"ETag","value":"W/\"480-TsPYE/6ASjOZx8KAjNqRRoHoPqE\""},{"key":"Date","value":"Thu, 16 May 2024 14:22:12 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"errors\": [],\n    \"data\": [\n        {\n            \"_id\": \"6645786a85808f17dc2e654d\",\n            \"organizationId\": \"6359f39ee9d7b7033b55bc23\",\n            \"__v\": 0,\n            \"dateActivated\": \"2024-05-16T05:03:05.374Z\",\n            \"dateCreated\": \"2024-05-16T03:07:22.256Z\",\n            \"dateModified\": \"2024-05-16T14:22:12.722Z\",\n            \"entityId\": \"66422763de3c3967deedf509\",\n            \"entityType\": \"token\",\n            \"riskCategory\": {\n                \"onKev\": {\n                    \"description\": \"test\",\n                    \"criteria\": true,\n                    \"remediationTimeFrame\": \"2h\",\n                    \"dateActivated\": \"2024-05-16T05:03:05.374Z\",\n                    \"status\": \"enabled\",\n                    \"_id\": \"66461694ed1fabb4495aca3a\"\n                },\n                \"critical\": {\n                    \"description\": null,\n                    \"criteria\": null,\n                    \"remediationTimeFrame\": null,\n                    \"status\": \"disabled\"\n                },\n                \"high\": {\n                    \"description\": \"test\",\n                    \"criteria\": [\n                        2.1,\n                        3.1\n                    ],\n                    \"remediationTimeFrame\": \"2h\",\n                    \"dateActivated\": \"2024-05-16T05:14:20.252Z\",\n                    \"status\": \"enabled\",\n                    \"_id\": \"66461694ed1fabb4495aca3b\"\n                },\n                \"medium\": {\n                    \"description\": null,\n                    \"criteria\": null,\n                    \"remediationTimeFrame\": null,\n                    \"status\": \"disabled\"\n                },\n                \"low\": {\n                    \"description\": \"test\",\n                    \"criteria\": [\n                        3.1,\n                        9.3\n                    ],\n                    \"remediationTimeFrame\": \"2h\",\n                    \"dateActivated\": \"2024-05-16T14:22:12.722Z\",\n                    \"status\": \"disabled\",\n                    \"_id\": \"66461694ed1fabb4495aca3c\"\n                },\n                \"information\": {\n                    \"description\": null,\n                    \"criteria\": null,\n                    \"remediationTimeFrame\": null,\n                    \"status\": \"disabled\"\n                }\n            },\n            \"status\": \"enabled\"\n        }\n    ]\n}"}],"_postman_id":"d3f46a38-f75b-4484-a10b-ff73323196ee"},{"name":"Get Settings","event":[{"listen":"test","script":{"id":"6fd34905-7950-408c-bcec-ea3952f248cf","exec":["// Construct the URL using the environment or global variable","var apiUrl = pm.variables.get(\"apiUrl\"); // Ensure this is correctly retrieving your API URL","var apiToken = pm.variables.get(\"apiToken\"); // Retrieve the API token from Postman's environment or global variables","// pm.environment.get(\"variable_key\");","","//Triage status names","//\"notAffected\": \"Not Affected\",","//\"affected\": \"Affected\",","//\"underInvestigation\": \"Under Investigation\",","//\"fixed\": \"Fixed\"","","","","pm.test(\"Triage CVE-2022-30123\", function () {","    console.log('here2')","    console.log(apiToken)","    pm.sendRequest({","        url: apiUrl + '/triage', // Concatenating the base URL and endpoint","        method: 'POST',","        headers: { // Correctly plural and adding Authorization","            'Content-Type': 'application/json',","            'Authorization': 'Bearer ' + apiToken // Add the API token here","        },","        body: {","            mode: 'raw',","            raw: JSON.stringify({","                cveIds: [\"CVE-2022-30123\"],","                details: \"test\",","                justification: \"\",","                organizationAssetId: \"65c576af4d8e9919ce6bd0c8\",","                scope: \"thisAssetVersionOnly\",","                triageStatusName: \"notAffected\"","            })","        }","    }, function (err, response) {","        if (err) {","            console.log(err);","        } else {","            var responseData = response.json(); // Ensure the response is indeed JSON","            console.log('here3')","            console.log(responseData)","            // Modify this test according to what you're actually expecting in the response","            pm.test(\"Data matches criteria\", function () {","                pm.expect(responseData).to.have.property('someField'); // Example test, change as needed","            });","        }","    });","});","","","","// pm.test(\"Response status code is 200\", function () {","//     console.log(apiToken)","//     pm.response.to.have.status(200);","// });","","// pm.test(\"Response is in JSON format\", function () {","//     pm.response.to.have.header(\"Content-Type\", \"application/json\");","// });","","// pm.test(\"Response has 'success' property with a boolean value\", function () {","//     pm.expect(pm.response.json()).to.have.property('success').that.is.a('boolean');","// });","","// pm.test(\"Response has 'errors' property that is an array\", function () {","//     pm.expect(pm.response.json()).to.have.property('errors').that.is.an('array');","// });","","// pm.test(\"Response has 'data' property that is an array\", function () {","//     pm.expect(pm.response.json()).to.have.property('data').that.is.an('array');","// });","","// pm.test(\"Response has non-empty 'organizationId' property\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.be.an('object');","//     pm.expect(responseData.organizationId).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Value should not be empty\");","// });","","","// pm.test(\"Name property is a non-empty string\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.be.an('object');","//     pm.expect(responseData.data).to.be.an('array');","    ","//     responseData.data.forEach(function(item) {","//         pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//     });","// });","","","// pm.test(\"Response has non-empty 'userId' property\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.have.property('data').that.is.an('array');","//     responseData.data.forEach(function(item) {","//         pm.expect(item).to.have.property('userId').that.is.a('string').and.not.empty;","//     });","// });","","// pm.test(\"Response time is less than 200ms\", function () {","//   pm.expect(pm.response.responseTime).to.be.below(200);","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"45b0cefe-1a2e-4014-a092-dc33eb303241","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"followAuthorizationHeader":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/sla/setting","description":"<h3 id=\"route-documentation\">Route Documentation</h3>\n<h4 id=\"get-slasetting\">GET <code>/sla/setting</code></h4>\n<p><strong>Description:</strong><br />Fetches the SLA settings for an organization. If no settings are found, a default set of settings with \"disabled\" status is returned.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sla</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sla","setting"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"45b0cefe-1a2e-4014-a092-dc33eb303241"},{"name":"Get Violations","event":[{"listen":"test","script":{"id":"6fd34905-7950-408c-bcec-ea3952f248cf","exec":["// Construct the URL using the environment or global variable","var apiUrl = pm.variables.get(\"apiUrl\"); // Ensure this is correctly retrieving your API URL","var apiToken = pm.variables.get(\"apiToken\"); // Retrieve the API token from Postman's environment or global variables","// pm.environment.get(\"variable_key\");","","//Triage status names","//\"notAffected\": \"Not Affected\",","//\"affected\": \"Affected\",","//\"underInvestigation\": \"Under Investigation\",","//\"fixed\": \"Fixed\"","","","","pm.test(\"Triage CVE-2022-30123\", function () {","    console.log('here2')","    console.log(apiToken)","    pm.sendRequest({","        url: apiUrl + '/triage', // Concatenating the base URL and endpoint","        method: 'POST',","        headers: { // Correctly plural and adding Authorization","            'Content-Type': 'application/json',","            'Authorization': 'Bearer ' + apiToken // Add the API token here","        },","        body: {","            mode: 'raw',","            raw: JSON.stringify({","                cveIds: [\"CVE-2022-30123\"],","                details: \"test\",","                justification: \"\",","                organizationAssetId: \"65c576af4d8e9919ce6bd0c8\",","                scope: \"thisAssetVersionOnly\",","                triageStatusName: \"notAffected\"","            })","        }","    }, function (err, response) {","        if (err) {","            console.log(err);","        } else {","            var responseData = response.json(); // Ensure the response is indeed JSON","            console.log('here3')","            console.log(responseData)","            // Modify this test according to what you're actually expecting in the response","            pm.test(\"Data matches criteria\", function () {","                pm.expect(responseData).to.have.property('someField'); // Example test, change as needed","            });","        }","    });","});","","","","// pm.test(\"Response status code is 200\", function () {","//     console.log(apiToken)","//     pm.response.to.have.status(200);","// });","","// pm.test(\"Response is in JSON format\", function () {","//     pm.response.to.have.header(\"Content-Type\", \"application/json\");","// });","","// pm.test(\"Response has 'success' property with a boolean value\", function () {","//     pm.expect(pm.response.json()).to.have.property('success').that.is.a('boolean');","// });","","// pm.test(\"Response has 'errors' property that is an array\", function () {","//     pm.expect(pm.response.json()).to.have.property('errors').that.is.an('array');","// });","","// pm.test(\"Response has 'data' property that is an array\", function () {","//     pm.expect(pm.response.json()).to.have.property('data').that.is.an('array');","// });","","// pm.test(\"Response has non-empty 'organizationId' property\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.be.an('object');","//     pm.expect(responseData.organizationId).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Value should not be empty\");","// });","","","// pm.test(\"Name property is a non-empty string\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.be.an('object');","//     pm.expect(responseData.data).to.be.an('array');","    ","//     responseData.data.forEach(function(item) {","//         pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//     });","// });","","","// pm.test(\"Response has non-empty 'userId' property\", function () {","//     const responseData = pm.response.json();","    ","//     pm.expect(responseData).to.have.property('data').that.is.an('array');","//     responseData.data.forEach(function(item) {","//         pm.expect(item).to.have.property('userId').that.is.a('string').and.not.empty;","//     });","// });","","// pm.test(\"Response time is less than 200ms\", function () {","//   pm.expect(pm.response.responseTime).to.be.below(200);","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });","// // Verify the length of data array in the response","// pm.test(\"The data array length must be greater than zero\", function () {","//     const responseData = pm.response.json();","//     const data = responseData.data;","   ","//     pm.expect(data.length).to.be.greaterThan(0, \"Data array should not be empty\");","","//     data.forEach((item)=>{","//       pm.expect(item.name).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Name should not be empty\");","//       pm.expect(item.userId).to.be.a('string').and.not.empty;","//     });","// });"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b2e1748a-dc02-4e8b-9ca3-9c94627934b2","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"followAuthorizationHeader":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/sla/violations","description":"<p>Fetches the list of vulnerabilities that have breached the SLA remediation timelines for an organization.</p>\n<h2 id=\"authentication\"><strong>Authentication</strong></h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:sla</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><code>limit</code> (optional, default: <code>20</code>): Number of records to return.</p>\n</li>\n<li><p><code>page</code> (optional, default: <code>1</code>): Page number for pagination.</p>\n</li>\n<li><p><code>organizationAssetId</code> (optional): Filter results by a specific asset ID.</p>\n</li>\n</ul>\n<p><strong>Response:</strong></p>\n<ul>\n<li><p><strong>Success Response:</strong></p>\n<ul>\n<li><p><code>success</code>: <code>true</code></p>\n</li>\n<li><p><code>errors</code>: <code>[]</code></p>\n</li>\n<li><p><code>data</code>: [<br />  {<br />  \"organizationId\": \"string\",<br />  \"cveId\": \"string\",<br />  \"organizationAssetId\": \"string\",<br />  \"assetName\": \"string\",<br />  \"assetVersion\": \"string\",<br />  \"firstSeen\": \"date\",<br />  \"cvssScore\": \"number\",<br />  \"remediationTimeFrameMS\": number, \"remediationTimeFrame\": number,<br />  \"violatedSLA\": string,<br />  \"onKev\": \"boolean\",<br />  \"vulnerabilityPublishDate\": \"date\",<br />  \"epssScore\": \"number\",<br />  \"epssPercentile\": \"number\",<br />  \"triageStatus\": \"string\"<br />  }<br />  ]</p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["sla","violations"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"key":"limit","value":"10000"},{"disabled":true,"key":"page","value":"2"},{"disabled":true,"key":"organizationAssetId","value":"65c9cca9c0693c85574fae30"}],"variable":[]}},"response":[],"_postman_id":"b2e1748a-dc02-4e8b-9ca3-9c94627934b2"}],"id":"278e866e-3650-4391-a5af-79ba242ae5b5","description":"<p><strong>Pre-release routes are accessible only to customers who request access. Please reach out to our team for access.</strong></p>\n<p><code>/sla</code> routes:<br /><code>/setting</code> (GET and POST) and <code>/violations</code> (GET)</p>\n<p>The <code>/sla</code> routes handle the Service Level Agreement (SLA) settings and violations for an organization. The SLA settings include details about various risk categories and their remediation time frames, while the SLA violations route provides information about vulnerabilities that have breached the defined remediation timelines.</p>\n<p>NOTE: Since this is a pre-release, there could be some changes on the behavior or response object...</p>\n","_postman_id":"278e866e-3650-4391-a5af-79ba242ae5b5","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Files","item":[{"name":"Create File Request","id":"05b87797-98a1-4974-9d65-5b821493f1ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"vdr\",\n    \"format\": \"csv\",\n    \"targetType\": \"product\",\n    \"targetIds\": [\n        \"6787eb3775cde36900c87f69\"\n    ],\n    \"requestorId\": \"6670b9567f3ba6ab9a063ce3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/file-request","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:product-vdr-report</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["file-request"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f8546417-e476-4a35-a6c4-0be60ef66723","name":"Licenses Report","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"vdr\",\n    \"format\": \"csv\",\n    \"targetType\": \"product\",\n    \"targetIds\": [\n        \"6787eb3775cde36900c87f69\"\n    ],\n    \"requestorId\": \"6670b9567f3ba6ab9a063ce3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/file-request"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"05b87797-98a1-4974-9d65-5b821493f1ab"}],"id":"73900045-f801-4e0e-92a7-f62d4a976861","_postman_id":"73900045-f801-4e0e-92a7-f62d4a976861","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Permissions","item":[{"name":"Get Permissions","id":"50feffd1-f50f-4941-91b1-19c24893c7ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/permissions","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> none</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["permissions"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>standard/composite</p>\n","type":"text/plain"},"key":"permissionType","value":"composite"}],"variable":[]}},"response":[],"_postman_id":"50feffd1-f50f-4941-91b1-19c24893c7ea"}],"id":"4dfb1265-e2ce-430e-a1b0-fcd629c6784a","_postman_id":"4dfb1265-e2ce-430e-a1b0-fcd629c6784a","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Roles","item":[{"name":"Get Roles","id":"bd642129-f847-4972-be5e-bea687080723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/roles","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:role</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["roles"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>standard/composite</p>\n","type":"text/plain"},"key":"permissionType","value":"composite"}],"variable":[]}},"response":[],"_postman_id":"bd642129-f847-4972-be5e-bea687080723"}],"id":"403f71eb-70e1-406e-a4b4-348f32f601e5","_postman_id":"403f71eb-70e1-406e-a4b4-348f32f601e5","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Role","item":[{"name":"Get Role","id":"9974145a-1e06-43bd-b6dc-84c116040a14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/role/:urn","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:role</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["role",":urn"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>standard/composite</p>\n","type":"text/plain"},"key":"permissionType","value":"composite"}],"variable":[{"description":{"content":"<p>posible values:member, admin,  view-only </p>\n","type":"text/plain"},"type":"any","value":"","key":"urn"}]}},"response":[],"_postman_id":"9974145a-1e06-43bd-b6dc-84c116040a14"},{"name":"Get Users in Role","id":"a82e5d8d-1c97-4d9d-aefd-1a4b7bfaf8f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/role/:urn/users","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:role</code>,<code>read:user</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["role",":urn","users"],"host":["{{apiUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>standard/composite</p>\n","type":"text/plain"},"key":"permissionType","value":"composite"}],"variable":[{"description":{"content":"<p>posible values:member, admin,  view-only </p>\n","type":"text/plain"},"type":"any","value":"","key":"urn"}]}},"response":[],"_postman_id":"a82e5d8d-1c97-4d9d-aefd-1a4b7bfaf8f3"}],"id":"232da4b0-f191-44fe-b83d-644e374f6f90","_postman_id":"232da4b0-f191-44fe-b83d-644e374f6f90","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Member","item":[{"name":"Create/Update User Member","id":"0553f533-c716-4027-8da4-00b3aa97c03d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"test.user@example.com\",\n    \"firstName\": \"Test\",\n    \"lastName\": \"User\",\n    \"title\": \"Doer of things\",\n    \"roles\": [\"member\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/member/memberId?","description":"<p>Create/update new organization member.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:user</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<p><code>memberId</code>: when set to <code>new</code>, creates a new organization member ( POST {{apiUrl}}/member/new )</p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["member","memberId"],"host":["{{apiUrl}}"],"query":[{"key":"","value":null}],"variable":[]}},"response":[],"_postman_id":"0553f533-c716-4027-8da4-00b3aa97c03d"},{"name":"Delete User Member","id":"2bb5e05c-cb52-48bf-b9f7-452204781f30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiUrl}}/member/:memberId","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>delete:user</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["member",":memberId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of member to delete</p>\n","type":"text/plain"},"type":"any","value":"","key":"memberId"}]}},"response":[],"_postman_id":"2bb5e05c-cb52-48bf-b9f7-452204781f30"},{"name":"Fetch User Member","id":"35dec744-8b7f-43b5-b7e6-9b10f4789a32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/member/:memberId","description":"<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>read:user</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["member",":memberId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of member to fetch</p>\n","type":"text/plain"},"type":"any","value":"","key":"memberId"}]}},"response":[],"_postman_id":"35dec744-8b7f-43b5-b7e6-9b10f4789a32"}],"id":"271140f3-abcd-4ce5-b535-9666d94bb397","_postman_id":"271140f3-abcd-4ce5-b535-9666d94bb397","description":"","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Upload Binary (Beta)","item":[{"name":"Upload Async - Binary Initiate","id":"abe7b2a5-2600-4e6b-8948-bac514d70189","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"fileName\": \"<Name of the binary>\",\n  \"version\": \"1.0.0\",\n  \"supplier\": \"<Name of the supplier>\",\n  \"relationship\": \"<first | third>\",\n  \"isActive\": true,\n  \"enrichmentOverride\": \"NONE\",\n  \"fileSizeBytes\": 552.6\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/upload/binary-analysis/initiate","description":"<p>This is step 1 in a 3 step asynchronus binary upload process: initiate an asynchronous binary file upload. The response data will include an entry containing the new BinaryAnalysisRequest ID and the URL to upload the file to (using PUT).</p>\n<p>Uploaded file must be a binary executable. Non-binary executables such as <code>.pdf</code>, <code>.csv</code>, etc. are invalid</p>\n<p>The body of the POST request should be a JSON payload that can include the following:</p>\n<ul>\n<li><p>fileName: Required, the name of the binary executable file</p>\n</li>\n<li><p>version: Required, the version of the binary executable</p>\n</li>\n<li><p>relationship: Optional, used for SBOMs, defaults to <code>third</code>. This is used in the Manifest app to track whether a given SBOM is first-party (built/supplied <em>by</em> your organization) or third-party (supplied <em>to</em> your organization). Accepted values are first or third.</p>\n</li>\n<li><p>isActive: Optional boolean, specify whether the created asset should be active or inactive.</p>\n</li>\n<li><p>enrichmentOverride: Optional specification of enrichment source to use ('PARLAY' | 'PARLAY_ADDITIVE' | 'NONE')</p>\n</li>\n<li><p>fileSizeBytes: Optional, file size in bytes of the binary file being uploaded</p>\n</li>\n</ul>\n<p>Once an asynchronous binary upload has been initiated, the file being uploaded can be sent directly to the <code>uploadUrl</code> in the response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -s \\\n  -X PUT \\\n  -T binary.exe \\\n  'https://mfst-object/url'\n\n</code></pre>\n<p>After the file is done uploading, the <code>/v1/upload/binary-analysis/complete/:binaryAnalysisRequestId</code> endpoint must be called to start the processing.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["upload","binary-analysis","initiate"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1b247dfa-53a5-4d87-9262-da5319e3d1f4","name":"Upload Async - Binary Initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <your-api-token>","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"fileName\": \"<Name of the binary>\",\n  \"version\": \"1.0.0\",\n  \"supplier\": \"<Name of the supplier>\",\n  \"relationship\": \"<first | third>\",\n  \"isActive\": true,\n  \"enrichmentOverride\": \"NONE\",\n  \"fileSizeBytes\": 552.6\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/upload/binary-analysis/initiate"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"success\": \"true\",\n  \"errors\": [],\n  \"data\": [\n    {\n      \"binaryAnalysisRequestId\": \"6800a8a8a8a8a8a8a8a8a8a8\",\n      \"uploadUrl\": \"https://mfst-object-url\"\n    }\n  ]\n}"}],"_postman_id":"abe7b2a5-2600-4e6b-8948-bac514d70189"},{"name":"Upload Async - Binary Complete","id":"2fdd174b-7b0d-4122-968d-82f5de26bd23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"fileName\": \"<Name of the binary>\",\n  \"version\": \"1.0.0\",\n  \"supplier\": \"<Name of the supplier>\",\n  \"relationship\": \"<first | third>\",\n  \"isActive\": true,\n  \"enrichmentOverride\": \"NONE\",\n  \"fileSizeBytes\": 552.6\n}"},"url":"{{apiUrl}}/upload/binary-analysis/complete/:binaryAnalysisRequestId","description":"<p>This is step 3 in a 3 step asynchronus upload process: mark an asynchronous binary file upload as completed and ready for processing. The BinaryAnalysisRequest ID specified in the path must be a valid ID belonging to the organization associated with the request.</p>\n<p>The API will verify that a file has been saved to the object storage and then kick off the binary analysis pipeline.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Requires a Bearer token in the <code>Authorization</code> header. The API token can be obtained from Manifest Cyber dashboard.</p>\n<p><strong>Required token permissions:</strong> <code>create:sbom-and-vex</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {{apiToken}}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["upload","binary-analysis","complete",":binaryAnalysisRequestId"],"host":["{{apiUrl}}"],"query":[],"variable":[{"description":{"content":"<p>The ID of the binaryAnalysisRequest that is ready for processing</p>\n","type":"text/plain"},"type":"any","value":"","key":"binaryAnalysisRequestId"}]}},"response":[{"id":"4a32ac0f-f587-416c-9f77-303d7fefcfa8","name":"Upload Async - Binary Complete","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <your-api-token>","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{apiUrl}}/upload/binary-analysis/complete/:binaryAnalysisRequestId","host":["{{apiUrl}}"],"path":["upload","binary-analysis","complete",":binaryAnalysisRequestId"],"variable":[{"key":"binaryAnalysisRequestId","value":"","description":"The ID of the binaryAnalysisRequest that is ready for processing"}]}},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"success\": \"true\",\n  \"errors\": [],\n  \"data\": []\n}"}],"_postman_id":"2fdd174b-7b0d-4122-968d-82f5de26bd23"}],"id":"e9103aed-6213-43c6-8a7e-4430f8f74074","description":"<p>Upload a binary executable file to generate an SBOM via binary analysis.</p>\n<p>Disclaimer: Binary Analysis is a Beta release. To participate in the Binary Analysis Beta, customers must opt in. Please contact <a href=\"https://mailto:support@manifestcyber.com\">support@manifestcyber.com</a> to request access.</p>\n","_postman_id":"e9103aed-6213-43c6-8a7e-4430f8f74074","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}}},{"name":"Base URL","id":"a187647d-5c83-435a-80ea-2d1499a286e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}","description":"<p>For convenience, this route simply displays current accessed environment, version (if applicable), and links to these docs.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>None required.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fb9e28d6-f015-4237-a722-550d86a204f5","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{apiUrl}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://http://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"160"},{"key":"ETag","value":"W/\"a0-snqvQU28NnRe4/Vy4eRPxu4TmC4\""},{"key":"Date","value":"Tue, 25 Oct 2022 21:34:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Manifest API\",\n    \"environment\": \"production\",\n    \"docs\": \"https://api-docs.manifestcyber.com\"\n}"}],"_postman_id":"a187647d-5c83-435a-80ea-2d1499a286e0"},{"name":"Health Check","id":"470b29e3-172d-4fff-b288-9fe6fce0e112","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiUrl}}/health","description":"<p>Used for status monitoring &amp; health checks - 200 OK returns a classic meme.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>none required.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"},"isInherited":true,"source":{"_postman_id":"19174cfa-736a-49ec-9284-d8477d86b071","id":"19174cfa-736a-49ec-9284-d8477d86b071","name":"Manifest API v1","type":"collection"}},"urlObject":{"path":["health"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2f88250d-e34b-461b-8bbe-3ba7239bf8b2","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{apiUrl}}/health"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Powered-By","value":"Caffeine"},{"key":"Feature-Policy","value":"microphone 'none'; payment 'none'; sync-xhr 'self' https://http://local.manifestcyber.com:3000"},{"key":"Server","value":"https://www.youtube.com/watch?v=K6Ato2GhU-o"},{"key":"Content-Type","value":"text/html; charset=utf-8"},{"key":"Content-Length","value":"43"},{"key":"ETag","value":"W/\"2b-x7XHxdF13W4MapLbsrjPA36mDGg\""},{"key":"Date","value":"Tue, 25 Oct 2022 21:35:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"https://www.youtube.com/watch?v=Cqd1Gvq-RBY"}],"_postman_id":"470b29e3-172d-4fff-b288-9fe6fce0e112"}],"auth":{"type":"bearer","bearer":{"token":"{{apiToken}}"}},"event":[{"listen":"prerequest","script":{"id":"056949c9-f4a0-4080-9e0c-a5f8cb635504","type":"text/javascript","exec":["pm.request.headers.add({ key: 'organizationid', value: pm.environment.get(\"organizationid\") })",""]}},{"listen":"test","script":{"id":"5fed24ee-13aa-4090-bfbc-a982fce4c223","type":"text/javascript","exec":[""]}}]}