chg: [false-positive] add colour scheme to false-positive risk level and

typo fixed
pull/249/head
Alexandre Dulaunoy 2022-09-07 08:50:20 +02:00
parent 93309b58c4
commit aa251b6a40
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
1 changed files with 11 additions and 7 deletions

View File

@ -1,7 +1,7 @@
{ {
"namespace": "false-positive", "namespace": "false-positive",
"description": "This taxonomy aims to ballpark the expected amount of false positives.", "description": "This taxonomy aims to ballpark the expected amount of false positives.",
"version": 6, "version": 7,
"expanded": "False positive", "expanded": "False positive",
"predicates": [ "predicates": [
{ {
@ -25,25 +25,29 @@
"value": "low", "value": "low",
"expanded": "Low", "expanded": "Low",
"description": "The risk of having false positives in the tagged value is low.", "description": "The risk of having false positives in the tagged value is low.",
"numerical_value": 75 "numerical_value": 75,
"colour": "#33FF00"
}, },
{ {
"value": "medium", "value": "medium",
"expanded": "Medium", "expanded": "Medium",
"description": "The risk of having false positives in the tagged value is medium.", "description": "The risk of having false positives in the tagged value is medium.",
"numerical_value": 50 "numerical_value": 50,
"colour": "#FFFF00"
}, },
{ {
"value": "high", "value": "high",
"expanded": "High", "expanded": "High",
"description": "The risk of having false positives in the tagged value is high.", "description": "The risk of having false positives in the tagged value is high.",
"numerical_value": 25 "numerical_value": 25,
"colour": "#FF2B2B"
}, },
{ {
"value": "cannot-be-judged", "value": "cannot-be-judged",
"expanded": "Risk cannot be judged", "expanded": "Risk cannot be judged",
"description": "The risk of having false positives in the tagged value is cannot be judged.", "description": "The risk of having false positives in the tagged value cannot be judged.",
"numerical_value": 25 "numerical_value": 25,
"colour": "#FFC000"
} }
] ]
}, },
@ -59,7 +63,7 @@
{ {
"value": "false", "value": "false",
"expanded": "False", "expanded": "False",
"description": "The flase positive is not confirmed.", "description": "The false positive is not confirmed.",
"numerical_value": 50 "numerical_value": 50
} }
] ]