fix: clarification of the certainty entry based on feedback from an analyst

The probability is now set in the expanded value. The percentage has been removed
to avoid confusion.
pull/81/head
Alexandre Dulaunoy 2017-12-01 07:37:45 +01:00
parent f97d3f0339
commit 294bbf28de
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
1 changed files with 15 additions and 15 deletions

View File

@ -13,7 +13,7 @@
"value": "certainty" "value": "certainty"
} }
], ],
"version": 8, "version": 9,
"description": "Open Source Intelligence - Classification (MISP taxonomies)", "description": "Open Source Intelligence - Classification (MISP taxonomies)",
"namespace": "osint", "namespace": "osint",
"values": [ "values": [
@ -104,44 +104,44 @@
{ {
"entry": [ "entry": [
{ {
"description": "100% Certainty", "description": "Certainty",
"expanded": "100% Certainty", "expanded": "Certainty (probability equals 1 - 100%)",
"value": "100", "value": "100",
"numerical_value": 100 "numerical_value": 100
}, },
{ {
"description": "93% Almost certain", "description": "Almost certain",
"expanded": "93% Almost certain", "expanded": "Almost certain (probability equals 0.93 - 93%)",
"value": "93", "value": "93",
"numerical_value": 93 "numerical_value": 93
}, },
{ {
"description": "75% Probable", "description": "Probable",
"expanded": "75% Probable", "expanded": "Probable (probability equals 0.75 - 75%)",
"value": "75", "value": "75",
"numerical_value": 75 "numerical_value": 75
}, },
{ {
"description": "50% Chances about even", "description": "Chances about even",
"expanded": "50% Chances about even", "expanded": "Chances about even (probability equals 0.50 - 50%)",
"value": "50", "value": "50",
"numerical_value": 50 "numerical_value": 50
}, },
{ {
"description": "30% Probably not", "description": "Probably not",
"expanded": "30% Probably not", "expanded": "Probably not (probability equals 0.30 - 30%)",
"value": "30", "value": "30",
"numerical_value": 30 "numerical_value": 30
}, },
{ {
"description": "7% Almost certainly not", "description": "Almost certainly not",
"expanded": "7% Almost certainly not", "expanded": "Almost certainly not (probability equals 0.07 - 7%)",
"value": "7", "value": "7",
"numerical_value": 7 "numerical_value": 7
}, },
{ {
"description": "0% Impossibility", "description": "Impossibility",
"expanded": "0% Impossibility", "expanded": "Impossibility (probability equals 0 - 0%)",
"value": "0", "value": "0",
"numerical_value": 0 "numerical_value": 0
} }