From feb7af5e785aeaf5298d8214d5c0d7f59f798f04 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Sat, 21 Nov 2015 16:10:27 +0100 Subject: [PATCH] First version of the Admiralty Scale machine tags described in JSON. --- admiralty-scale/machinetag.json | 74 +++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 admiralty-scale/machinetag.json diff --git a/admiralty-scale/machinetag.json b/admiralty-scale/machinetag.json new file mode 100644 index 0000000..76acee4 --- /dev/null +++ b/admiralty-scale/machinetag.json @@ -0,0 +1,74 @@ +{ + "namespace": "admiralty-scale", + "description": "The Admiralty Scale (also called the NATO System) is used to rank the reliability of a source and the credibility of an information.", + "predicate": [ + { + "value": "source-reliability", + "expanded": "Source Reliability" + }, + { + "value": "information-credibility", + "expanded": "Information Credibility" + } + ], + "values": [ + { + "predicate": "source-reliability", + "entry": [ + { + "value": "a", + "expanded": "Completely reliable" + }, + { + "value": "b", + "expanded": "Usually reliable" + }, + { + "value": "c", + "expanded": "Fairly reliable" + }, + { + "value": "d", + "expanded": "Not usually reliable" + }, + { + "value": "e", + "expanded": "Unreliable" + }, + { + "value": "f", + "expanded": "Reliability cannot be judged" + } + ] + }, + { + "predicate": "information-credibility", + "entry": [ + { + "value": "1", + "expanded": "Confirmed by other sources" + }, + { + "value": "2", + "expanded": "Probably true" + }, + { + "value": "3", + "expanded": "Possibly true" + }, + { + "value": "4", + "expanded": "Doubtful" + }, + { + "value": "5", + "expanded": "Improbable" + }, + { + "value": "6", + "expanded": "Truth cannot be judged" + } + ] + } + ] +}