{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/greynoise/json-schema/greynoise-cve-exploitation-details-schema.json",
"title": "CVEExploitationDetails",
"type": "object",
"properties": {
"attack_vector": {
"type": "string",
"description": "The attack vector for the CVE.",
"example": "Network"
},
"exploit_found": {
"type": "boolean",
"description": "Whether an exploit has been found for this CVE.",
"example": true
},
"exploitation_registered_in_kev": {
"type": "boolean",
"description": "Whether the exploitation is registered in KEV.",
"example": true
},
"epss_score": {
"type": "number",
"description": "The EPSS score for the CVE.",
"example": 0.8
}
}
}