{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.security.cvssSummary", "title": "cvssSummary", "required": [ "@odata.type" ], "type": "object", "properties": { "score": { "oneOf": [ { "type": "number", "format": "double", "nullable": true }, { "type": "string", "nullable": true }, { "$ref": "#/components/schemas/ReferenceNumeric" } ], "description": "The CVSS score about this vulnerability." }, "severity": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.vulnerabilitySeverity" }, { "type": "object", "nullable": true } ], "description": "The CVSS severity rating for this vulnerability. The possible values are: none, low, medium, high, critical, unknownFutureValue." }, "vectorString": { "type": "string", "description": "The CVSS vector string for this vulnerability.", "nullable": true }, "@odata.type": { "type": "string" } } }