{ "$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" ] }