Amazon Inspector · JSON Structure

Inspector Cvss Score Structure

The CVSS score for a finding.

Type: object Properties: 4 Required: 4
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

CvssScore is a JSON Structure definition published by Amazon Inspector, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

baseScore scoringVector source version

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-cvss-score-structure.json",
  "name": "CvssScore",
  "description": "The CVSS score for a finding.",
  "type": "object",
  "properties": {
    "baseScore": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Double"
        },
        {
          "description": "The base CVSS score used for the finding."
        }
      ]
    },
    "scoringVector": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The vector string of the CVSS score."
        }
      ]
    },
    "source": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The source of the CVSS score."
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The version of CVSS used for the score."
        }
      ]
    }
  },
  "required": [
    "baseScore",
    "scoringVector",
    "source",
    "version"
  ]
}