sra-stix2-validator
Version:
36 lines • 1.21 kB
JSON
{
"$id": "../sdos/vulnerability.json",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "vulnerability",
"description": "A Vulnerability is a mistake in software that can be directly used by a hacker to gain access to a system or network.",
"type": "object",
"allOf": [
{
"$ref": "../common/core.json"
},
{
"properties": {
"type": {
"type": "string",
"description": "The type of this object, which MUST be the literal `vulnerability`.",
"const": "vulnerability"
},
"id": {
"title": "id",
"pattern": "^vulnerability--"
},
"name": {
"type": "string",
"description": "The name used to identify the Vulnerability."
},
"description": {
"type": "string",
"description": "A description that provides more details and context about the Vulnerability."
}
}
}
],
"required": [
"name"
]
}