Amazon Inspector · JSON Structure

Inspector Cvss2 Structure

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

Type: object Properties: 2
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Cvss2 is a JSON Structure definition published by Amazon Inspector, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

baseScore scoringVector

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-structure/inspector-cvss2-structure.json",
  "name": "Cvss2",
  "description": "The Common Vulnerability Scoring System (CVSS) version 2 details for the vulnerability.",
  "type": "object",
  "properties": {
    "baseScore": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Cvss2BaseScore"
        },
        {
          "description": "The CVSS v2 base score for the vulnerability."
        }
      ]
    },
    "scoringVector": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Cvss2ScoringVector"
        },
        {
          "description": "The scoring vector associated with the CVSS v2 score."
        }
      ]
    }
  }
}