Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vulnerability_cvss_vectors.json « json_schemas « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0da6de0a69d1873eef0864a11248135985152249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Schema for cvss attribute of Vulnerability",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "vendor": {
        "type": "string",
        "default": "unknown"
      },
      "vector": {
        "type": "string",
        "example": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
      }
    },
    "required": [
      "vendor",
      "vector"
    ]
  }
}