From c02fc66988a40f31870c6f98c2f37c8a42b99594 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Sun, 14 May 2023 17:37:46 +0200 Subject: [PATCH] chg: [information-origin] create a new taxonomy define if the content is from an AI-based system, a human or the origin is unknown. The original taxonomy from @aaronkaplan has been fixed to match the correct MISP taxonomy schema format. The file in the original pull-request was most probably `information-origin:AI-generated`. This taxonomy is just namespace predicate as there is no need of specific values until now. --- ai-or-not/machinetag.json | 39 ------------------------------ information-origin/machinetag.json | 25 +++++++++++++++++++ 2 files changed, 25 insertions(+), 39 deletions(-) delete mode 100644 ai-or-not/machinetag.json create mode 100644 information-origin/machinetag.json diff --git a/ai-or-not/machinetag.json b/ai-or-not/machinetag.json deleted file mode 100644 index 4ec1eb6..0000000 --- a/ai-or-not/machinetag.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "namespace": "info-origin", - "description": "Taxonomy for tagging information by its origin: human-generated or AI-generated.", - "version": 1, - "predicates": [ - "human-generated", - "AI-generated", - "uncertain-origin" - ], - "expanded": { - "human-generated": { - "expanded": "Information that has been generated by a human", - "colour": "#33cc33" - }, - "AI-generated": { - "expanded": "Information that has been generated by an AI", - "colour": "#ff0000" - }, - "uncertain-origin": { - "expanded": "Information for which the origin is uncertain", - "colour": "#999999" - } - }, - "entry": [ - { - "value": "info-origin:human-generated", - "expanded": "Information that has been generated by a human" - }, - { - "value": "info-origin:AI-generated", - "expanded": "Information that has been generated by an AI" - }, - { - "value": "info-origin:uncertain-origin", - "expanded": "Information for which the origin is uncertain" - } - ] -} - diff --git a/information-origin/machinetag.json b/information-origin/machinetag.json new file mode 100644 index 0000000..711b4e7 --- /dev/null +++ b/information-origin/machinetag.json @@ -0,0 +1,25 @@ +{ + "namespace": "information-origin", + "description": "Taxonomy for tagging information by its origin: human-generated or AI-generated.", + "version": 2, + "predicates": [ + { + "value": "human-generated", + "description": "Information that has been generated by a human.", + "expanded": "human generated", + "colour": "#33FF00" + }, + { + "value": "AI-generated", + "description": "Information that has been generated by an AI LLM or similar technologies.", + "expanded": "AI generated", + "colour": "#FFC000" + }, + { + "value": "uncertain-origin", + "description": "Information for which the origin is uncertain which can be machine or a human.", + "expanded": "uncertain origin", + "colour": "#FFC000" + } + ] +}