From ca75f557cba276dcf94aaa3d94a9df569ebce447 Mon Sep 17 00:00:00 2001 From: Michael Radka Date: Wed, 18 Oct 2023 13:37:29 -0400 Subject: [PATCH 1/4] Issue 826 Fix: Add activity_id descriptions Signed-off-by: Michael Radka --- events/network/file_activity.json | 42 ++++++++++++++++++++----------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/events/network/file_activity.json b/events/network/file_activity.json index ee3bf0868..9d390c94d 100644 --- a/events/network/file_activity.json +++ b/events/network/file_activity.json @@ -9,46 +9,60 @@ "activity_id": { "enum": { "1": { - "caption": "Upload" + "caption": "Upload", + "description": "Upload a file." }, "2": { - "caption": "Download" + "caption": "Download", + "description": "Download a file." }, "3": { - "caption": "Update" + "caption": "Update", + "description": "Update a file." }, "4": { - "caption": "Delete" + "caption": "Delete", + "description": "Delete a file." }, "5": { - "caption": "Rename" + "caption": "Rename", + "description": "Rename a file." }, "6": { - "caption": "Copy" + "caption": "Copy", + "description": "Copy a file." }, "7": { - "caption": "Move" + "caption": "Move", + "description": "Move a file." }, "8": { - "caption": "Restore" + "caption": "Restore", + "description": "Restore a file." }, "9": { - "caption": "Preview" + "caption": "Preview", + "description": "Preview a file." }, "10": { - "caption": "Lock" + "caption": "Lock", + "description": "Lock a file." }, "11": { - "caption": "Unlock" + "caption": "Unlock", + "description": "Unlock a file." }, "12": { - "caption": "Share" + "caption": "Share", + "description": "Share a file." }, "13": { - "caption": "Unshare" + "caption": "Unshare", + "description": "Unshare a file." }, "14": { - "caption": "Open" + "caption": "Open", + "description": "Open a file." } } }, From 8e016420a101132c056ae5cb025cb51075ebb171 Mon Sep 17 00:00:00 2001 From: Michael Radka Date: Thu, 19 Oct 2023 13:06:54 -0400 Subject: [PATCH 2/4] Add sync/unsync activities Signed-off-by: Michael Radka --- events/network/file_activity.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/events/network/file_activity.json b/events/network/file_activity.json index 9d390c94d..ec2728481 100644 --- a/events/network/file_activity.json +++ b/events/network/file_activity.json @@ -63,6 +63,14 @@ "14": { "caption": "Open", "description": "Open a file." + }, + "15": { + "caption": "Sync", + "description": "Mark a file or folder to sync with a computer." + }, + "16": { + "caption": "Unsync", + "description": "Mark a file or folder to not sync with a computer." } } }, From 7de4451a2a9ec87c4eac6945231169b7e2957e94 Mon Sep 17 00:00:00 2001 From: Michael Radka Date: Fri, 27 Oct 2023 10:35:23 -0400 Subject: [PATCH 3/4] Add customer_uid to metadata object Signed-off-by: Michael Radka --- objects/metadata.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/objects/metadata.json b/objects/metadata.json index da05a6923..1d09b073d 100644 --- a/objects/metadata.json +++ b/objects/metadata.json @@ -7,6 +7,9 @@ "correlation_uid": { "requirement": "optional" }, + "customer_uid": { + "requirement": "recommended" + }, "event_code": { "requirement": "optional" }, From ab55675d7f7d9aff703dc23be3d8816ab7d281bf Mon Sep 17 00:00:00 2001 From: Michael Radka Date: Fri, 27 Oct 2023 10:39:24 -0400 Subject: [PATCH 4/4] Remove customer_uid change, will add to a new PR Signed-off-by: Michael Radka --- objects/metadata.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/objects/metadata.json b/objects/metadata.json index 1d09b073d..da05a6923 100644 --- a/objects/metadata.json +++ b/objects/metadata.json @@ -7,9 +7,6 @@ "correlation_uid": { "requirement": "optional" }, - "customer_uid": { - "requirement": "recommended" - }, "event_code": { "requirement": "optional" },