Amazon Inspector · Schema
CvssScore
The CVSS score for a finding.
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning
Properties
| Name | Type | Description |
|---|---|---|
| baseScore | object | |
| scoringVector | object | |
| source | object | |
| version | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-cvss-score-schema.json",
"title": "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"
]
}