Amazon Inspector · Schema

Cvss3

The Common Vulnerability Scoring System (CVSS) version 3 details for the vulnerability.

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Properties

Name Type Description
baseScore object
scoringVector object
View JSON Schema on GitHub

JSON Schema

inspector-cvss3-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-cvss3-schema.json",
  "title": "Cvss3",
  "description": "The Common Vulnerability Scoring System (CVSS) version 3 details for the vulnerability.",
  "type": "object",
  "properties": {
    "baseScore": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Cvss3BaseScore"
        },
        {
          "description": "The CVSS v3 base score for the vulnerability."
        }
      ]
    },
    "scoringVector": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Cvss3ScoringVector"
        },
        {
          "description": "The scoring vector associated with the CVSS v3 score."
        }
      ]
    }
  }
}