Skip to content

Commit

Permalink
Updated Computed schema as feedback from Jay Jacobs CERTCC#576
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-vsarvepalli committed Jun 25, 2024
1 parent 86da372 commit 58bd445
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 23 deletions.
17 changes: 15 additions & 2 deletions data/schema/SSVC_Computed.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,23 @@
"description": "An optional short vector representation of a SSV computed decision score. This will be useful in providing permalink and other ways to provide quick read and access to a SSVC decision made"

},
"options": {
"type": "object",
"outcomes": {
"description": "These entries provide a list of potential outcomes once a Decision Tree were used to evaluate a vulnerability (or multiple) by a organization/person representing a Role",
"type": "array",
"items": {
"type": "string"
}
},
"options": {
"description": "These entries list the Options that were evaluated by a organization/person representing a Role",
"type": "object",
"patternProperties": {
".*" : {
"type": "array",
"items": {
"type": "string"
}
}
},
"minItems": 1,
"uniqueItems": true
Expand Down
30 changes: 9 additions & 21 deletions data/schema_examples/Computed-CVE-2014-0751-Coordinator.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,14 @@
"version": "2.0.3",
"computed": "SSVCv2/E:A/A:N/T:T/P:M/B:A/M:M/D:A/2021-09-29T15:29:44Z/",
"timestamp": "2021-09-29T15:29:44Z",
"options": [
{
"Exploitation": "active"
},
{
"Automatable": "no"
},
{
"Technical Impact": "total"
},
{
"Mission Prevalence": "Minimal"
},
{
"Public Well-being Impact": "Material"
},
{
"Mission & Well-being": "medium"
}
],
"$schema": "https://democert.org/ssvc/SSVC_Computed_v2.0.3.schema.json",
"options": {
"Exploitation": ["active"],
"Automatable": ["no"],
"Technical Impact": ["total"],
"Mission Prevalence": ["Minimal"],
"Public Well-being Impact": ["Material"],
"Mission & Well-being": ["medium"]
},
"outcomes": ["Act"],
"decision_tree_url": "https://democert.org/ssvc/CISA-Coordinator-v2.0.3.json"
}

0 comments on commit 58bd445

Please sign in to comment.