From 4ff894f4c8e1389de1b1d72e3948a22e277fdf2c Mon Sep 17 00:00:00 2001 From: pladam Date: Wed, 29 Nov 2023 20:00:18 -0500 Subject: [PATCH 01/73] adding objects for datastore object --- events/application/datastore_activity.json | 80 ++++++++++++++++++++++ objects/column.json | 31 +++++++++ objects/database.json | 38 ++++++++++ objects/databucket.json | 46 +++++++++++++ objects/query_info.json | 26 +++++++ objects/row.json | 31 +++++++++ objects/table.json | 43 ++++++++++++ 7 files changed, 295 insertions(+) create mode 100644 events/application/datastore_activity.json create mode 100644 objects/column.json create mode 100644 objects/database.json create mode 100644 objects/databucket.json create mode 100644 objects/query_info.json create mode 100644 objects/row.json create mode 100644 objects/table.json diff --git a/events/application/datastore_activity.json b/events/application/datastore_activity.json new file mode 100644 index 000000000..7b9786717 --- /dev/null +++ b/events/application/datastore_activity.json @@ -0,0 +1,80 @@ +{ + "uid": 5, + "description": "Datastore events describe general activities (Read, Update, Query, Delete, etc.) which affect datastores or data within those datastores, e.g. (AWS RDS, AWS S3)", + "extends": "application", + "caption": "Datastore Activity", + "name": "datastore_activity", + "attributes": { + "activity_id": { + "enum": { + "1": { + "caption": "Read", + "description": "The datastore activity in the event pertains to a 'Read' operation." + }, + "2": { + "caption": "Update", + "description": "The datastore activity in the event pertains to a 'Update' operation." + }, + "3": { + "caption": "Connect", + "description": "The datastore activity in the event pertains to a 'Connect' operation." + }, + "4": { + "caption": "Query", + "description": "The datastore activity in the event pertains to a 'Query' operation." + }, + "5": { + "caption": "Write", + "description": "The datastore activity in the event pertains to a 'Write' operation." + }, + "6": { + "caption": "Create", + "description": "The datastore activity in the event pertains to a 'Create' operation." + }, + "7": { + "caption": "Delete", + "description": "The datastore activity in the event pertains to a 'Delete' operation." + } + } + }, + "database": { + "group": "primary", + "requirement": "optional" + }, + "databucket": { + "group": "primary", + "requirement": "optional" + }, + "table": { + "group": "primary", + "requirement": "optional" + }, + "query_info": { + "group": "primary", + "requirement": "optional" + }, + "dst_endpoint": { + "group": "primary", + "requirement": "optional" + }, + "http_request": { + "description":"Details about the underlying http request.", + "group": "primary", + "requirement": "optional" + }, + "actor": { + "group": "primary", + "requirement": "required" + }, + "resources": { + "description": "Details about resources that were affected by the activity/event.", + "group": "primary", + "requirement": "optional" + }, + "src_endpoint": { + "description": "Details about the source of the activity.", + "group": "primary", + "requirement": "required" + } + } +} diff --git a/objects/column.json b/objects/column.json new file mode 100644 index 000000000..fac02a0a3 --- /dev/null +++ b/objects/column.json @@ -0,0 +1,31 @@ +{ + "caption": "Column", + "description": "The column object represents a column within a structured relational database or datastore table, which contains data that is able to be create, updated, deleted and queried.", + "extends": "object", + "name": "column", + "attributes": { + "created_time": { + "description": "The time when the column was known to have been created.", + "requirement": "optional" + }, + "last_updated": { + "description": "The time when the column was known to have been created.", + "requirement": "optional" + }, + "desc": { + "caption": "Description", + "description": "The description of the column.", + "requirement": "optional" + }, + "data": { + "caption": "Data", + "requirement": "optional" + }, + "name": { + "description": "The column name, ordinarily as assigned by a database administrator." + }, + "uid": { + "description": "The unique identifier of the column." + } + } +} diff --git a/objects/database.json b/objects/database.json new file mode 100644 index 000000000..e2f113cfd --- /dev/null +++ b/objects/database.json @@ -0,0 +1,38 @@ +{ + "caption": "Database", + "description": "The database object represents a database which contains an organized collection of data or a type of data.", + "extends": "object", + "name": "database", + "attributes": { + "created_time": { + "description": "The time when the database was known to have been created.", + "requirement": "optional" + }, + "last_updated": { + "description": "The time when the database was known to have been created.", + "requirement": "optional" + }, + "desc": { + "caption": "Description", + "description": "The description of the database.", + "requirement": "optional" + }, + "groups": { + "description": "The group names to which the database belongs.", + "requirement": "optional" + }, + "type": { + "description": "The database type. For example: unknown, Relational, Network, laptop, ObjectOriented, Cloud, Centralized, Operational, or NoSQL." + }, + "type_id": { + "description": "The database type ID.", + "requirement": "required" + }, + "name": { + "description": "The database name, ordinarily as assigned by a database administrator." + }, + "uid": { + "description": "The unique identifier of the database." + } + } +} diff --git a/objects/databucket.json b/objects/databucket.json new file mode 100644 index 000000000..7033ccf3d --- /dev/null +++ b/objects/databucket.json @@ -0,0 +1,46 @@ +{ + "caption": "Databucket", + "description": "The databucket object represents a databucket is a basic container that holds data, typically organized through the use of data partitions.", + "extends": "object", + "name": "databucket", + "attributes": { + "created_time": { + "description": "The time when the databucket was known to have been created.", + "requirement": "optional" + }, + "last_updated": { + "description": "The time when the databucket was known to have been created.", + "requirement": "optional" + }, + "desc": { + "caption": "Description", + "description": "The description of the databucket.", + "requirement": "optional" + }, + "partition": { + "description": "The partition within the databucket.", + "requirement": "optional" + }, + "file": { + "description": "A file within a databucket.", + "requirement": "optional" + }, + "groups": { + "description": "The group names to which the databucket belongs.", + "requirement": "optional" + }, + "type": { + "description": "The databucket type. For example: S3, Azure Blob, GCP." + }, + "type_id": { + "description": "The databucket type ID.", + "requirement": "required" + }, + "name": { + "description": "The databucket name." + }, + "uid": { + "description": "The unique identifier of the databucket." + } + } +} diff --git a/objects/query_info.json b/objects/query_info.json new file mode 100644 index 000000000..47ec042b5 --- /dev/null +++ b/objects/query_info.json @@ -0,0 +1,26 @@ +{ + "caption": "Query Information", + "description": "The query info object contains data relating to accessing data within a datastore. If you need to access, manipulate, delete, or retrieve data from a datastore, you'll need a database query written using a specific syntax.", + "extends": "object", + "name": "query_info", + "attributes": { + "query_time": { + "description": "The time when the query was run.", + "requirement": "optional" + }, + "query": { + "description": "The query code being run.", + "requirement": "optional" + }, + "data": { + "description": "The data returned from the query execution.", + "requirement": "optional" + }, + "name": { + "description": "The query name for a saved or scheduled query." + }, + "uid": { + "description": "The unique identifier of the query." + } + } +} diff --git a/objects/row.json b/objects/row.json new file mode 100644 index 000000000..aa1061c07 --- /dev/null +++ b/objects/row.json @@ -0,0 +1,31 @@ +{ + "caption": "Row", + "description": "The row object represents a row within a structured relational database or datastore table, which contains data that is able to be create, updated, deleted and queried.", + "extends": "object", + "name": "row", + "attributes": { + "created_time": { + "description": "The time when the row was known to have been created.", + "requirement": "optional" + }, + "last_updated": { + "description": "The time when the row was known to have been created.", + "requirement": "optional" + }, + "desc": { + "caption": "Description", + "description": "The description of the row.", + "requirement": "optional" + }, + "data": { + "caption": "Data", + "requirement": "optional" + }, + "name": { + "description": "The row name, ordinarily as assigned by a database administrator." + }, + "uid": { + "description": "The unique identifier of the row." + } + } +} diff --git a/objects/table.json b/objects/table.json new file mode 100644 index 000000000..498212912 --- /dev/null +++ b/objects/table.json @@ -0,0 +1,43 @@ +{ + "caption": "Table", + "description": "The table object represents a table within a structured relational database or datastore, which contains columns and rows of data that are able to be create, updated, deleted and queried.", + "extends": "object", + "name": "table", + "attributes": { + "created_time": { + "description": "The time when the table was known to have been created.", + "requirement": "optional" + }, + "last_updated": { + "description": "The time when the table was known to have been created.", + "requirement": "optional" + }, + "desc": { + "caption": "Description", + "description": "The description of the table.", + "requirement": "optional" + }, + "column": { + "caption": "Column", + "requirement": "optional" + }, + "row": { + "caption": "Row", + "requirement": "optional" + }, + "key": { + "caption": "Key", + "requirement": "optional" + }, + "groups": { + "description": "The group names to which the table belongs.", + "requirement": "optional" + }, + "name": { + "description": "The table name, ordinarily as assigned by a database administrator." + }, + "uid": { + "description": "The unique identifier of the table." + } + } +} From 94c6ece11f13778acb5b8e9489130ac22d54b204 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 20:10:28 -0500 Subject: [PATCH 02/73] Adding datastore attributes to dictionary. Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- dictionary.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dictionary.json b/dictionary.json index d90eb9155..d214c1491 100644 --- a/dictionary.json +++ b/dictionary.json @@ -1057,6 +1057,16 @@ "description": "The additional data that is associated with the event or object. See specific usage.", "type": "json_t" }, + "database": { + "caption": "Database", + "description": "The database object represents a database which contains an organized collection of data or a type of data.", + "type": "database" + }, + "databucket": { + "caption": "Databucket", + "description": "The databucket object represents a databucket is a basic container that holds data, typically organized through the use of data partitions.", + "type": "databucket" + }, "data_sources": { "caption": "Data Sources", "description": "The data sources for the finding.", @@ -2563,6 +2573,11 @@ "description": "The Domain Name System (DNS) query.", "type": "dns_query" }, + "query_info": { + "caption": "Query Info", + "description": "The query info object contains data relating to accessing data within a datastore. If you need to access, manipulate, delete, or retrieve data from a datastore, you'll need a database query written using a specific syntax.", + "type": "query_info" + }, "query_string": { "caption": "HTTP Query String", "description": "The query portion of the URL. For example: the query portion of the URL http://www.example.com/search?q=bad&sort=date is q=bad&sort=date.", @@ -3226,6 +3241,11 @@ "description": "The system call that was invoked.", "type": "string_t" }, + "table": { + "caption": "Table", + "description": "The table object represents a table within a structured relational database or datastore, which contains columns and rows of data that are able to be create, updated, deleted and queried.", + "type": "table" + }, "tactic": { "caption": "Tactic", "description": "The Tactic object describes the tactic ID and/or name that is associated to an attack, as defined by ATT&CK MatrixTM.", From b4d1179438e4f43123a3569588414121bae44366 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 20:11:40 -0500 Subject: [PATCH 03/73] Delete objects/column.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/column.json | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 objects/column.json diff --git a/objects/column.json b/objects/column.json deleted file mode 100644 index fac02a0a3..000000000 --- a/objects/column.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "caption": "Column", - "description": "The column object represents a column within a structured relational database or datastore table, which contains data that is able to be create, updated, deleted and queried.", - "extends": "object", - "name": "column", - "attributes": { - "created_time": { - "description": "The time when the column was known to have been created.", - "requirement": "optional" - }, - "last_updated": { - "description": "The time when the column was known to have been created.", - "requirement": "optional" - }, - "desc": { - "caption": "Description", - "description": "The description of the column.", - "requirement": "optional" - }, - "data": { - "caption": "Data", - "requirement": "optional" - }, - "name": { - "description": "The column name, ordinarily as assigned by a database administrator." - }, - "uid": { - "description": "The unique identifier of the column." - } - } -} From 873c04b1d69233d68f69f36b8e3e40fcf962617e Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 20:11:51 -0500 Subject: [PATCH 04/73] Delete objects/row.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/row.json | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 objects/row.json diff --git a/objects/row.json b/objects/row.json deleted file mode 100644 index aa1061c07..000000000 --- a/objects/row.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "caption": "Row", - "description": "The row object represents a row within a structured relational database or datastore table, which contains data that is able to be create, updated, deleted and queried.", - "extends": "object", - "name": "row", - "attributes": { - "created_time": { - "description": "The time when the row was known to have been created.", - "requirement": "optional" - }, - "last_updated": { - "description": "The time when the row was known to have been created.", - "requirement": "optional" - }, - "desc": { - "caption": "Description", - "description": "The description of the row.", - "requirement": "optional" - }, - "data": { - "caption": "Data", - "requirement": "optional" - }, - "name": { - "description": "The row name, ordinarily as assigned by a database administrator." - }, - "uid": { - "description": "The unique identifier of the row." - } - } -} From b017d6ca42b73f6638b49a878399bd3d5d4b011a Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 20:12:40 -0500 Subject: [PATCH 05/73] removing row and col from table object Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/table.json | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/objects/table.json b/objects/table.json index 498212912..63841e726 100644 --- a/objects/table.json +++ b/objects/table.json @@ -17,18 +17,6 @@ "description": "The description of the table.", "requirement": "optional" }, - "column": { - "caption": "Column", - "requirement": "optional" - }, - "row": { - "caption": "Row", - "requirement": "optional" - }, - "key": { - "caption": "Key", - "requirement": "optional" - }, "groups": { "description": "The group names to which the table belongs.", "requirement": "optional" From e6b88fc05670665585f31f98be61eef80b904190 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 23:19:43 -0500 Subject: [PATCH 06/73] Update dictionary.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- dictionary.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/dictionary.json b/dictionary.json index d214c1491..c3a37bc8a 100644 --- a/dictionary.json +++ b/dictionary.json @@ -1067,6 +1067,11 @@ "description": "The databucket object represents a databucket is a basic container that holds data, typically organized through the use of data partitions.", "type": "databucket" }, + "datastore_query": { + "caption": "Datastore Query", + "description": "A string representating the query code being run. For example: SELECT *", + "type": "string_t" + }, "data_sources": { "caption": "Data Sources", "description": "The data sources for the finding.", @@ -1899,6 +1904,11 @@ "description": "The most recent detection time of the activity or object. See specific usage.", "type": "timestamp_t" }, + "last_updated_time": { + "caption": "Last Updated", + "description": "The most recent time the resources has been updated or modified. See specific usage.", + "type": "timestamp_t" + }, "latency": { "caption": "Latency", "description": "The HTTP response latency measured in milliseconds.", @@ -2339,6 +2349,11 @@ "description": "The EPSS score's percentile representing relative importance and ranking of the score in the larger EPSS dataset.", "type": "float_t" }, + "partition": { + "caption": "File", + "description": "A file partition within the databucket.", + "type": "string_t" + }, "peripheral_device": { "caption": "Peripheral Device", "description": "The peripheral device that triggered the event.", From 59508026065db53665da5d746f087a4e8c2e39a3 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 23:20:06 -0500 Subject: [PATCH 07/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objects/database.json b/objects/database.json index e2f113cfd..e9b37e1ee 100644 --- a/objects/database.json +++ b/objects/database.json @@ -8,8 +8,8 @@ "description": "The time when the database was known to have been created.", "requirement": "optional" }, - "last_updated": { - "description": "The time when the database was known to have been created.", + "last_updated_time": { + "description": "The most recent detection time of the activity or object. See specific usage.", "requirement": "optional" }, "desc": { From 0c6dac9f4a0c1eea898fd5883ec70ebb78f76b70 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 23:20:21 -0500 Subject: [PATCH 08/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objects/databucket.json b/objects/databucket.json index 7033ccf3d..d36f41416 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -8,8 +8,8 @@ "description": "The time when the databucket was known to have been created.", "requirement": "optional" }, - "last_updated": { - "description": "The time when the databucket was known to have been created.", + "last_updated_time": { + "description": "The most recent detection time of the activity or object. See specific usage.", "requirement": "optional" }, "desc": { From d22b85cf9181eee52876ac78bc7f929623e2f817 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 23:20:44 -0500 Subject: [PATCH 09/73] Update table.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/table.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objects/table.json b/objects/table.json index 63841e726..c3499cde3 100644 --- a/objects/table.json +++ b/objects/table.json @@ -8,8 +8,8 @@ "description": "The time when the table was known to have been created.", "requirement": "optional" }, - "last_updated": { - "description": "The time when the table was known to have been created.", + "last_updated_time": { + "description": "The most recent detection time of the activity or object. See specific usage.", "requirement": "optional" }, "desc": { From e01e1b1175e295f9c874ffa1f8b8bbda82cb8ca8 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 23:21:17 -0500 Subject: [PATCH 10/73] Update query_info.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/query_info.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objects/query_info.json b/objects/query_info.json index 47ec042b5..8f0f33a7f 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -8,8 +8,8 @@ "description": "The time when the query was run.", "requirement": "optional" }, - "query": { - "description": "The query code being run.", + "datastore_query": { + "description": "A string representating the query code being run. For example: SELECT *", "requirement": "optional" }, "data": { From 1424e0498d35722a18ced9dcd8fd4be3b150b0f4 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 23:27:00 -0500 Subject: [PATCH 11/73] Update query_info.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/query_info.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/objects/query_info.json b/objects/query_info.json index 8f0f33a7f..2dbea28e9 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -16,6 +16,10 @@ "description": "The data returned from the query execution.", "requirement": "optional" }, + "bytes_out": { + "description": "The size of the data returned from the query.", + "requirement": "optional" + }, "name": { "description": "The query name for a saved or scheduled query." }, From a4f0a94999d731285466af690ff5efefe1b229c1 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 23:28:43 -0500 Subject: [PATCH 12/73] Update table.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/table.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/objects/table.json b/objects/table.json index c3499cde3..70ed17772 100644 --- a/objects/table.json +++ b/objects/table.json @@ -17,6 +17,10 @@ "description": "The description of the table.", "requirement": "optional" }, + "size": { + "description": "The size of data table, in bytes.", + "requirement": "optional" + }, "groups": { "description": "The group names to which the table belongs.", "requirement": "optional" From b1909d0355232d2263efa052270c5360af852f70 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 23:29:03 -0500 Subject: [PATCH 13/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/objects/database.json b/objects/database.json index e9b37e1ee..795e280e7 100644 --- a/objects/database.json +++ b/objects/database.json @@ -17,6 +17,10 @@ "description": "The description of the database.", "requirement": "optional" }, + "size": { + "description": "The size of database, in bytes.", + "requirement": "optional" + }, "groups": { "description": "The group names to which the database belongs.", "requirement": "optional" From 8f2a654edabbf1f581fc4eb1f00958e65fb55f7b Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 29 Nov 2023 23:29:21 -0500 Subject: [PATCH 14/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/objects/databucket.json b/objects/databucket.json index d36f41416..6813a2197 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -17,6 +17,10 @@ "description": "The description of the databucket.", "requirement": "optional" }, + "size": { + "description": "The size of data bucket, in bytes.", + "requirement": "optional" + }, "partition": { "description": "The partition within the databucket.", "requirement": "optional" From d36a9dd2cc446058c64484fa416a43fc7e36a548 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:19:18 -0500 Subject: [PATCH 15/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/objects/database.json b/objects/database.json index 795e280e7..fe6135c84 100644 --- a/objects/database.json +++ b/objects/database.json @@ -28,10 +28,6 @@ "type": { "description": "The database type. For example: unknown, Relational, Network, laptop, ObjectOriented, Cloud, Centralized, Operational, or NoSQL." }, - "type_id": { - "description": "The database type ID.", - "requirement": "required" - }, "name": { "description": "The database name, ordinarily as assigned by a database administrator." }, From c77946c1e02801db994fbe06373c5359a4e09d4d Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:19:29 -0500 Subject: [PATCH 16/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/objects/databucket.json b/objects/databucket.json index 6813a2197..a15b4c88e 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -36,10 +36,6 @@ "type": { "description": "The databucket type. For example: S3, Azure Blob, GCP." }, - "type_id": { - "description": "The databucket type ID.", - "requirement": "required" - }, "name": { "description": "The databucket name." }, From e499bdc1b221e651770d070254509b009b428180 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:20:57 -0500 Subject: [PATCH 17/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index a15b4c88e..766c4a11f 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -33,7 +33,7 @@ "description": "The group names to which the databucket belongs.", "requirement": "optional" }, - "type": { + "databucket_type": { "description": "The databucket type. For example: S3, Azure Blob, GCP." }, "name": { From 73c7c0ef0de23c2fc10be92dd9b70d34952490ce Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:21:18 -0500 Subject: [PATCH 18/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/database.json b/objects/database.json index fe6135c84..be012b573 100644 --- a/objects/database.json +++ b/objects/database.json @@ -25,7 +25,7 @@ "description": "The group names to which the database belongs.", "requirement": "optional" }, - "type": { + "database_type": { "description": "The database type. For example: unknown, Relational, Network, laptop, ObjectOriented, Cloud, Centralized, Operational, or NoSQL." }, "name": { From fc9cc519a79b6cb6c7700b7db98b9662243a8980 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:29:55 -0500 Subject: [PATCH 19/73] Update dictionary.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- dictionary.json | 66 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/dictionary.json b/dictionary.json index c3a37bc8a..a46c1053f 100644 --- a/dictionary.json +++ b/dictionary.json @@ -1062,11 +1062,77 @@ "description": "The database object represents a database which contains an organized collection of data or a type of data.", "type": "database" }, + "database_type": { + "caption": "Database", + "description": "The database type.", + "type": "database" + }, + "database_type_id": { + "caption": "Database Type", + "description": "The normalized identifier of the database type.", + "enum": { + "0": { + "caption": "Unknown" + }, + "1": { + "caption": "Relational" + }, + "2": { + "caption": "Network" + }, + "3": { + "caption": "Object Oriented" + }, + "3": { + "caption": "Cloud" + }, + "4": { + "caption": "Centralized" + }, + "5": { + "caption": "Operational" + }, + "6": { + "caption": "NoSQL" + }, + "99": { + "caption": "Other" + } + }, + "type": "integer_t" + }, "databucket": { "caption": "Databucket", "description": "The databucket object represents a databucket is a basic container that holds data, typically organized through the use of data partitions.", "type": "databucket" }, + "databucket_type": { + "caption": "Database", + "description": "The database type.", + "type": "database" + }, + "databucket_type_id": { + "caption": "Databucket Type", + "description": "The normalized identifier of the databucket type.", + "enum": { + "0": { + "caption": "Unknown" + }, + "1": { + "caption": "S3" + }, + "2": { + "caption": "Azure Blob" + }, + "3": { + "caption": "GCP Bucket" + }, + "99": { + "caption": "Other" + } + }, + "type": "string_t" + }, "datastore_query": { "caption": "Datastore Query", "description": "A string representating the query code being run. For example: SELECT *", From 0ab6d391c824920305bdd30d6869d592be622d25 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:30:56 -0500 Subject: [PATCH 20/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index 766c4a11f..97bd74973 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -34,7 +34,10 @@ "requirement": "optional" }, "databucket_type": { - "description": "The databucket type. For example: S3, Azure Blob, GCP." + "description": "The database type.", + }, + "databucket_type_id": { + "description": "The normalized identifier of the databucket type.", }, "name": { "description": "The databucket name." From e61873e0defaca047aedf4026cfe586ed1adc49d Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:31:38 -0500 Subject: [PATCH 21/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/objects/database.json b/objects/database.json index be012b573..7a24bdec9 100644 --- a/objects/database.json +++ b/objects/database.json @@ -26,7 +26,10 @@ "requirement": "optional" }, "database_type": { - "description": "The database type. For example: unknown, Relational, Network, laptop, ObjectOriented, Cloud, Centralized, Operational, or NoSQL." + "description": "The database type.", + }, + "database_type_id": { + "description": "The normalized identifier of the database type.", }, "name": { "description": "The database name, ordinarily as assigned by a database administrator." From b574a0e328636237a581a6ccb4e3fa35c4192a59 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:32:13 -0500 Subject: [PATCH 22/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/objects/database.json b/objects/database.json index 7a24bdec9..0441a7175 100644 --- a/objects/database.json +++ b/objects/database.json @@ -27,9 +27,11 @@ }, "database_type": { "description": "The database type.", + "requirement": "optional" }, "database_type_id": { "description": "The normalized identifier of the database type.", + "requirement": "optional" }, "name": { "description": "The database name, ordinarily as assigned by a database administrator." From e88ea8b9972495fdc49d4459bf299a77796f501d Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:32:24 -0500 Subject: [PATCH 23/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/objects/databucket.json b/objects/databucket.json index 97bd74973..2d76a2552 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -35,9 +35,11 @@ }, "databucket_type": { "description": "The database type.", + "requirement": "optional" }, "databucket_type_id": { "description": "The normalized identifier of the databucket type.", + "requirement": "optional" }, "name": { "description": "The databucket name." From a5541362eb455bd009256ad504226f402c79d985 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:26:37 -0500 Subject: [PATCH 24/73] Update dictionary.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- dictionary.json | 66 ------------------------------------------------- 1 file changed, 66 deletions(-) diff --git a/dictionary.json b/dictionary.json index a46c1053f..c3a37bc8a 100644 --- a/dictionary.json +++ b/dictionary.json @@ -1062,77 +1062,11 @@ "description": "The database object represents a database which contains an organized collection of data or a type of data.", "type": "database" }, - "database_type": { - "caption": "Database", - "description": "The database type.", - "type": "database" - }, - "database_type_id": { - "caption": "Database Type", - "description": "The normalized identifier of the database type.", - "enum": { - "0": { - "caption": "Unknown" - }, - "1": { - "caption": "Relational" - }, - "2": { - "caption": "Network" - }, - "3": { - "caption": "Object Oriented" - }, - "3": { - "caption": "Cloud" - }, - "4": { - "caption": "Centralized" - }, - "5": { - "caption": "Operational" - }, - "6": { - "caption": "NoSQL" - }, - "99": { - "caption": "Other" - } - }, - "type": "integer_t" - }, "databucket": { "caption": "Databucket", "description": "The databucket object represents a databucket is a basic container that holds data, typically organized through the use of data partitions.", "type": "databucket" }, - "databucket_type": { - "caption": "Database", - "description": "The database type.", - "type": "database" - }, - "databucket_type_id": { - "caption": "Databucket Type", - "description": "The normalized identifier of the databucket type.", - "enum": { - "0": { - "caption": "Unknown" - }, - "1": { - "caption": "S3" - }, - "2": { - "caption": "Azure Blob" - }, - "3": { - "caption": "GCP Bucket" - }, - "99": { - "caption": "Other" - } - }, - "type": "string_t" - }, "datastore_query": { "caption": "Datastore Query", "description": "A string representating the query code being run. For example: SELECT *", From 1b801e1797bf034178a8dd986bf9e673bb7ee775 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:27:35 -0500 Subject: [PATCH 25/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objects/database.json b/objects/database.json index 0441a7175..b19dca5a3 100644 --- a/objects/database.json +++ b/objects/database.json @@ -25,11 +25,11 @@ "description": "The group names to which the database belongs.", "requirement": "optional" }, - "database_type": { + "type": { "description": "The database type.", "requirement": "optional" }, - "database_type_id": { + "type_uid": { "description": "The normalized identifier of the database type.", "requirement": "optional" }, From 54851296e06bc3a473634fe8deb10ed6c39abec4 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:27:59 -0500 Subject: [PATCH 26/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objects/databucket.json b/objects/databucket.json index 2d76a2552..a9b84a9b8 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -33,11 +33,11 @@ "description": "The group names to which the databucket belongs.", "requirement": "optional" }, - "databucket_type": { + "type": { "description": "The database type.", "requirement": "optional" }, - "databucket_type_id": { + "type_uid": { "description": "The normalized identifier of the databucket type.", "requirement": "optional" }, From 3891adab75da1e60ef8d92a2c3700a8c149edf45 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:30:18 -0500 Subject: [PATCH 27/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/objects/database.json b/objects/database.json index b19dca5a3..6cbed7dda 100644 --- a/objects/database.json +++ b/objects/database.json @@ -29,9 +29,38 @@ "description": "The database type.", "requirement": "optional" }, - "type_uid": { + "type_id": { "description": "The normalized identifier of the database type.", - "requirement": "optional" + "requirement": "required", + "enum": { + "0": { + "caption": "Unknown" + }, + "1": { + "caption": "Relational" + }, + "2": { + "caption": "Network" + }, + "3": { + "caption": "Object Oriented" + }, + "3": { + "caption": "Cloud" + }, + "4": { + "caption": "Centralized" + }, + "5": { + "caption": "Operational" + }, + "6": { + "caption": "NoSQL" + }, + "99": { + "caption": "Other" + } + } }, "name": { "description": "The database name, ordinarily as assigned by a database administrator." From ea9d202fe6548822963196b2e1eefc49d6313d5a Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:31:50 -0500 Subject: [PATCH 28/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index a9b84a9b8..7056e0899 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -39,7 +39,24 @@ }, "type_uid": { "description": "The normalized identifier of the databucket type.", - "requirement": "optional" + "requirement": "optional", + "enum": { + "0": { + "caption": "Unknown" + }, + "1": { + "caption": "S3" + }, + "2": { + "caption": "Azure Blob" + }, + "3": { + "caption": "GCP Bucket" + }, + "99": { + "caption": "Other" + } + } }, "name": { "description": "The databucket name." From e74a49cfe1d052630b4e43d1d2f0f84ab036a1d6 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:32:32 -0500 Subject: [PATCH 29/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/database.json b/objects/database.json index 6cbed7dda..b230f0d1f 100644 --- a/objects/database.json +++ b/objects/database.json @@ -27,7 +27,7 @@ }, "type": { "description": "The database type.", - "requirement": "optional" + "requirement": "required" }, "type_id": { "description": "The normalized identifier of the database type.", From d7db32815da4caa893034135f63b2b99f75c9fc5 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:32:53 -0500 Subject: [PATCH 30/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objects/databucket.json b/objects/databucket.json index 7056e0899..b16ca859b 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -35,11 +35,11 @@ }, "type": { "description": "The database type.", - "requirement": "optional" + "requirement": "required" }, "type_uid": { "description": "The normalized identifier of the databucket type.", - "requirement": "optional", + "requirement": "required", "enum": { "0": { "caption": "Unknown" From cd6a4ab11dd38d83f6872797d44e65225284478f Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:34:56 -0500 Subject: [PATCH 31/73] Update dictionary.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- dictionary.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dictionary.json b/dictionary.json index c3a37bc8a..a1b53ec35 100644 --- a/dictionary.json +++ b/dictionary.json @@ -1067,11 +1067,6 @@ "description": "The databucket object represents a databucket is a basic container that holds data, typically organized through the use of data partitions.", "type": "databucket" }, - "datastore_query": { - "caption": "Datastore Query", - "description": "A string representating the query code being run. For example: SELECT *", - "type": "string_t" - }, "data_sources": { "caption": "Data Sources", "description": "The data sources for the finding.", From 4a9d3ed80c74eaed546a4b50508b42ec8f8d2701 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:36:05 -0500 Subject: [PATCH 32/73] Update query_info.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/query_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/query_info.json b/objects/query_info.json index 2dbea28e9..8aef66808 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -8,7 +8,7 @@ "description": "The time when the query was run.", "requirement": "optional" }, - "datastore_query": { + "query_string": { "description": "A string representating the query code being run. For example: SELECT *", "requirement": "optional" }, From 07e8d1533333e3a2cec17c119d11efaf0b2e1c29 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:37:02 -0500 Subject: [PATCH 33/73] Update dictionary.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- dictionary.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dictionary.json b/dictionary.json index a1b53ec35..ccc503f34 100644 --- a/dictionary.json +++ b/dictionary.json @@ -1899,11 +1899,6 @@ "description": "The most recent detection time of the activity or object. See specific usage.", "type": "timestamp_t" }, - "last_updated_time": { - "caption": "Last Updated", - "description": "The most recent time the resources has been updated or modified. See specific usage.", - "type": "timestamp_t" - }, "latency": { "caption": "Latency", "description": "The HTTP response latency measured in milliseconds.", From ebc2852e9cac49ecde0e49c1afb894d60620e936 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:38:03 -0500 Subject: [PATCH 34/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/database.json b/objects/database.json index b230f0d1f..743e98162 100644 --- a/objects/database.json +++ b/objects/database.json @@ -8,7 +8,7 @@ "description": "The time when the database was known to have been created.", "requirement": "optional" }, - "last_updated_time": { + "modified_time": { "description": "The most recent detection time of the activity or object. See specific usage.", "requirement": "optional" }, From 23b0028f3ef2aec0a89aa5a24cab6a508234676c Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:38:12 -0500 Subject: [PATCH 35/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index b16ca859b..e139765c8 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -8,7 +8,7 @@ "description": "The time when the databucket was known to have been created.", "requirement": "optional" }, - "last_updated_time": { + "modified_time": { "description": "The most recent detection time of the activity or object. See specific usage.", "requirement": "optional" }, From 88574c0a19de191d690bbfc4da73dd04a5689528 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:38:20 -0500 Subject: [PATCH 36/73] Update table.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/table.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/table.json b/objects/table.json index 70ed17772..9fbec8c15 100644 --- a/objects/table.json +++ b/objects/table.json @@ -8,7 +8,7 @@ "description": "The time when the table was known to have been created.", "requirement": "optional" }, - "last_updated_time": { + "modified_time": { "description": "The most recent detection time of the activity or object. See specific usage.", "requirement": "optional" }, From 22c54f0fd8750e61e6aba45da1e5d7e0689b7821 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:39:56 -0500 Subject: [PATCH 37/73] Update dictionary.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- dictionary.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dictionary.json b/dictionary.json index ccc503f34..d214c1491 100644 --- a/dictionary.json +++ b/dictionary.json @@ -2339,11 +2339,6 @@ "description": "The EPSS score's percentile representing relative importance and ranking of the score in the larger EPSS dataset.", "type": "float_t" }, - "partition": { - "caption": "File", - "description": "A file partition within the databucket.", - "type": "string_t" - }, "peripheral_device": { "caption": "Peripheral Device", "description": "The peripheral device that triggered the event.", From 751bb0053309fb9de53e915145c126f6101132b0 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:40:15 -0500 Subject: [PATCH 38/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/objects/databucket.json b/objects/databucket.json index e139765c8..56c4cc0c5 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -21,10 +21,6 @@ "description": "The size of data bucket, in bytes.", "requirement": "optional" }, - "partition": { - "description": "The partition within the databucket.", - "requirement": "optional" - }, "file": { "description": "A file within a databucket.", "requirement": "optional" From 7e445427c281af318bb903b2c194f722bf8237f8 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Tue, 5 Dec 2023 12:08:32 -0500 Subject: [PATCH 39/73] Update query_info.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/query_info.json | 1 + 1 file changed, 1 insertion(+) diff --git a/objects/query_info.json b/objects/query_info.json index 8aef66808..4453d6957 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -9,6 +9,7 @@ "requirement": "optional" }, "query_string": { + "caption": "Query String", "description": "A string representating the query code being run. For example: SELECT *", "requirement": "optional" }, From c1b9305c1d5aa550598545e12144e2b2c6fc93f0 Mon Sep 17 00:00:00 2001 From: Adam P <106110648+adplotzk@users.noreply.github.com> Date: Fri, 15 Dec 2023 10:53:14 -0500 Subject: [PATCH 40/73] Update query_info.json Signed-off-by: Adam P. <106110648+adplotzk@users.noreply.github.com> --- objects/query_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/query_info.json b/objects/query_info.json index 4453d6957..523b553b8 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -10,7 +10,7 @@ }, "query_string": { "caption": "Query String", - "description": "A string representating the query code being run. For example: SELECT *", + "description": "A string representing the query code being run. For example: SELECT *", "requirement": "optional" }, "data": { From 155b6aa9d309ed7f3cd93656637f10cd6d0d1640 Mon Sep 17 00:00:00 2001 From: Adam P <106110648+adplotzk@users.noreply.github.com> Date: Fri, 15 Dec 2023 10:53:48 -0500 Subject: [PATCH 41/73] Update query_info.json Signed-off-by: Adam P. <106110648+adplotzk@users.noreply.github.com> --- objects/query_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/query_info.json b/objects/query_info.json index 523b553b8..b2f73372c 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -11,7 +11,7 @@ "query_string": { "caption": "Query String", "description": "A string representing the query code being run. For example: SELECT *", - "requirement": "optional" + "requirement": "required" }, "data": { "description": "The data returned from the query execution.", From 43f41b077627e16d0a5dde06751b518b9247d093 Mon Sep 17 00:00:00 2001 From: Adam P <106110648+adplotzk@users.noreply.github.com> Date: Fri, 15 Dec 2023 10:57:39 -0500 Subject: [PATCH 42/73] Update datastore_activity.json Signed-off-by: Adam P. <106110648+adplotzk@users.noreply.github.com> --- events/application/datastore_activity.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/events/application/datastore_activity.json b/events/application/datastore_activity.json index 7b9786717..18c5ccc78 100644 --- a/events/application/datastore_activity.json +++ b/events/application/datastore_activity.json @@ -76,5 +76,12 @@ "group": "primary", "requirement": "required" } - } + }, + "constraints": { + "at_least_one": [ + "database", + "databucket", + "table" + ] + } } From b1b54854907926c2bb85a39c84426de1aacabb37 Mon Sep 17 00:00:00 2001 From: Adam P <106110648+adplotzk@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:31:44 -0500 Subject: [PATCH 43/73] Update dictionary.json Signed-off-by: Adam P. <106110648+adplotzk@users.noreply.github.com> --- dictionary.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictionary.json b/dictionary.json index d214c1491..8d7cb7412 100644 --- a/dictionary.json +++ b/dictionary.json @@ -1064,7 +1064,7 @@ }, "databucket": { "caption": "Databucket", - "description": "The databucket object represents a databucket is a basic container that holds data, typically organized through the use of data partitions.", + "description": "The data bucket object encapsulates details about a container that stores data, typically organized using data partitions.", "type": "databucket" }, "data_sources": { From 22cffe19a812b41d9dc724c472b2ee386eb82dc0 Mon Sep 17 00:00:00 2001 From: Adam P <106110648+adplotzk@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:33:25 -0500 Subject: [PATCH 44/73] Update query_info.json Signed-off-by: Adam P. <106110648+adplotzk@users.noreply.github.com> --- objects/query_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/query_info.json b/objects/query_info.json index b2f73372c..bbb7c2bda 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -17,7 +17,7 @@ "description": "The data returned from the query execution.", "requirement": "optional" }, - "bytes_out": { + "bytes": { "description": "The size of the data returned from the query.", "requirement": "optional" }, From 9e773642500e7b6ec4d148b8fcfd907fd34b034f Mon Sep 17 00:00:00 2001 From: Adam P <106110648+adplotzk@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:34:06 -0500 Subject: [PATCH 45/73] Update database.json Signed-off-by: Adam P. <106110648+adplotzk@users.noreply.github.com> --- objects/database.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/database.json b/objects/database.json index 743e98162..98c0e8613 100644 --- a/objects/database.json +++ b/objects/database.json @@ -9,7 +9,7 @@ "requirement": "optional" }, "modified_time": { - "description": "The most recent detection time of the activity or object. See specific usage.", + "description": "The most recent time when any changes, updates, or modifications were made within the database.", "requirement": "optional" }, "desc": { From e5dd58d9f998f8b7ea9f2d7c660086a23fa182d7 Mon Sep 17 00:00:00 2001 From: Adam P <106110648+adplotzk@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:35:01 -0500 Subject: [PATCH 46/73] Update database.json Signed-off-by: Adam P. <106110648+adplotzk@users.noreply.github.com> --- objects/database.json | 1 - 1 file changed, 1 deletion(-) diff --git a/objects/database.json b/objects/database.json index 98c0e8613..e9212fad6 100644 --- a/objects/database.json +++ b/objects/database.json @@ -14,7 +14,6 @@ }, "desc": { "caption": "Description", - "description": "The description of the database.", "requirement": "optional" }, "size": { From 2909d9dc4f9a951abd4e48f75e04cf00002a5ff6 Mon Sep 17 00:00:00 2001 From: Adam P <106110648+adplotzk@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:35:35 -0500 Subject: [PATCH 47/73] Update databucket.json Signed-off-by: Adam P. <106110648+adplotzk@users.noreply.github.com> --- objects/databucket.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index 56c4cc0c5..c2c725ccf 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -9,7 +9,7 @@ "requirement": "optional" }, "modified_time": { - "description": "The most recent detection time of the activity or object. See specific usage.", + "description": "The most recent time when any changes, updates, or modifications were made within the databucket.", "requirement": "optional" }, "desc": { From 397a0bb0882d2baf7192261bf5c93cfc153b10c0 Mon Sep 17 00:00:00 2001 From: Adam P <106110648+adplotzk@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:35:56 -0500 Subject: [PATCH 48/73] Update table.json Signed-off-by: Adam P. <106110648+adplotzk@users.noreply.github.com> --- objects/table.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/table.json b/objects/table.json index 9fbec8c15..7fb5ecf2e 100644 --- a/objects/table.json +++ b/objects/table.json @@ -9,7 +9,7 @@ "requirement": "optional" }, "modified_time": { - "description": "The most recent detection time of the activity or object. See specific usage.", + "description": "The most recent time when any changes, updates, or modifications were made within the table.", "requirement": "optional" }, "desc": { From 88a2a8282239ea8046926688fbc4b73a37d38c72 Mon Sep 17 00:00:00 2001 From: Adam P <106110648+adplotzk@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:36:52 -0500 Subject: [PATCH 49/73] Update dictionary.json Signed-off-by: Adam P. <106110648+adplotzk@users.noreply.github.com> --- dictionary.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictionary.json b/dictionary.json index 8d7cb7412..353b68fc2 100644 --- a/dictionary.json +++ b/dictionary.json @@ -2575,7 +2575,7 @@ }, "query_info": { "caption": "Query Info", - "description": "The query info object contains data relating to accessing data within a datastore. If you need to access, manipulate, delete, or retrieve data from a datastore, you'll need a database query written using a specific syntax.", + "description": "The query info object holds information related to data access within a datastore. To access, manipulate, delete, or retrieve data from a datastore, a database query must be written using a specific syntax.", "type": "query_info" }, "query_string": { From 936df3a5bb9b1182954eb7c55b0e929a0c27488e Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:09:10 -0500 Subject: [PATCH 50/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index c2c725ccf..b52c0a1a5 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -33,7 +33,7 @@ "description": "The database type.", "requirement": "required" }, - "type_uid": { + "type_id": { "description": "The normalized identifier of the databucket type.", "requirement": "required", "enum": { From 1511b035a46d2b2e9cf9139520df0e7e2ebf9790 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:20:23 -0500 Subject: [PATCH 51/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index b52c0a1a5..fb057c070 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -1,6 +1,6 @@ { "caption": "Databucket", - "description": "The databucket object represents a databucket is a basic container that holds data, typically organized through the use of data partitions.", + "description": "The databucket object is used for databuckets which are typically cloud-based containers used for object storage. Databuckets are often organized in directory like structures called partitions.", "extends": "object", "name": "databucket", "attributes": { From d94a26e351df504d379705e9376ef81af701a318 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:24:01 -0500 Subject: [PATCH 52/73] Update dictionary.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- dictionary.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dictionary.json b/dictionary.json index 353b68fc2..375a5d4ec 100644 --- a/dictionary.json +++ b/dictionary.json @@ -1059,12 +1059,12 @@ }, "database": { "caption": "Database", - "description": "The database object represents a database which contains an organized collection of data or a type of data.", + "description": "The database object is used for databases which are typically datastore services that contain an organized collection of structured and unstructured data or a types of data.", "type": "database" }, "databucket": { "caption": "Databucket", - "description": "The data bucket object encapsulates details about a container that stores data, typically organized using data partitions.", + "description": "The databucket object is used for databuckets which are typically cloud-based container services used for object storage. Databuckets are often organized in directory like structures called partitions.", "type": "databucket" }, "data_sources": { From 93abf503bcc8d927a651e81531c4c6301f0c37ff Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:24:28 -0500 Subject: [PATCH 53/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/database.json b/objects/database.json index e9212fad6..201b94d4c 100644 --- a/objects/database.json +++ b/objects/database.json @@ -1,6 +1,6 @@ { "caption": "Database", - "description": "The database object represents a database which contains an organized collection of data or a type of data.", + "description": "The database object is used for databases which are typically datastore services that contain an organized collection of structured and unstructured data or a types of data.", "extends": "object", "name": "database", "attributes": { From 0f005096be36ada41475db36586109b4a7f47da7 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Tue, 19 Dec 2023 18:32:31 -0500 Subject: [PATCH 54/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index fb057c070..77a99693f 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -1,6 +1,6 @@ { "caption": "Databucket", - "description": "The databucket object is used for databuckets which are typically cloud-based containers used for object storage. Databuckets are often organized in directory like structures called partitions.", + "description": "The data bucket object is a basic container that holds data, typically organized through the use of data partitions.", "extends": "object", "name": "databucket", "attributes": { From b187c41786a2dfec5462fcfcbb337cab67bbc10a Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:33:30 -0500 Subject: [PATCH 55/73] Update dictionary.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- dictionary.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictionary.json b/dictionary.json index 375a5d4ec..700a186a9 100644 --- a/dictionary.json +++ b/dictionary.json @@ -1064,7 +1064,7 @@ }, "databucket": { "caption": "Databucket", - "description": "The databucket object is used for databuckets which are typically cloud-based container services used for object storage. Databuckets are often organized in directory like structures called partitions.", + "description": "The data bucket object is a basic container that holds data, typically organized through the use of data partitions.", "type": "databucket" }, "data_sources": { From 6db869fb8cb7e7de688ac2878aea9b095729dfef Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:37:21 -0500 Subject: [PATCH 56/73] Update datastore_activity.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- events/application/datastore_activity.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/events/application/datastore_activity.json b/events/application/datastore_activity.json index 18c5ccc78..750370e2b 100644 --- a/events/application/datastore_activity.json +++ b/events/application/datastore_activity.json @@ -39,11 +39,11 @@ }, "database": { "group": "primary", - "requirement": "optional" + "requirement": "recommended" }, "databucket": { "group": "primary", - "requirement": "optional" + "requirement": "recommended" }, "table": { "group": "primary", From 8484dea45e6013663ad56fb9b8a3b2bf42a1dfb5 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:43:27 -0500 Subject: [PATCH 57/73] Update datastore_activity.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- events/application/datastore_activity.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/events/application/datastore_activity.json b/events/application/datastore_activity.json index 750370e2b..89dc26c61 100644 --- a/events/application/datastore_activity.json +++ b/events/application/datastore_activity.json @@ -54,11 +54,12 @@ "requirement": "optional" }, "dst_endpoint": { + "description": "Details about the endpoint hosting the datastore application or service.", "group": "primary", "requirement": "optional" }, "http_request": { - "description":"Details about the underlying http request.", + "description": "Details about the underlying http request.", "group": "primary", "requirement": "optional" }, From 30efd946ad098d1b7e3f0baccb199b1eb7495e09 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:44:09 -0500 Subject: [PATCH 58/73] Update datastore_activity.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- events/application/datastore_activity.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/events/application/datastore_activity.json b/events/application/datastore_activity.json index 89dc26c61..95d405cf5 100644 --- a/events/application/datastore_activity.json +++ b/events/application/datastore_activity.json @@ -67,11 +67,6 @@ "group": "primary", "requirement": "required" }, - "resources": { - "description": "Details about resources that were affected by the activity/event.", - "group": "primary", - "requirement": "optional" - }, "src_endpoint": { "description": "Details about the source of the activity.", "group": "primary", From d0616685b9626b43ef4e41bac4506f60634dd9a1 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:45:26 -0500 Subject: [PATCH 59/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/database.json b/objects/database.json index 201b94d4c..abe05b987 100644 --- a/objects/database.json +++ b/objects/database.json @@ -1,7 +1,7 @@ { "caption": "Database", "description": "The database object is used for databases which are typically datastore services that contain an organized collection of structured and unstructured data or a types of data.", - "extends": "object", + "extends": "_entity", "name": "database", "attributes": { "created_time": { From d852ce88585c043f2e7f4b1e2d1929c1df4cdb27 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:45:46 -0500 Subject: [PATCH 60/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index 77a99693f..577193935 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -1,7 +1,7 @@ { "caption": "Databucket", "description": "The data bucket object is a basic container that holds data, typically organized through the use of data partitions.", - "extends": "object", + "extends": "_entity", "name": "databucket", "attributes": { "created_time": { From 7c690a9651f9cc1508d6d611ec6d7db150ee9c88 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:47:16 -0500 Subject: [PATCH 61/73] Update query_info.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/query_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/query_info.json b/objects/query_info.json index bbb7c2bda..6f91d75b9 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -1,7 +1,7 @@ { "caption": "Query Information", "description": "The query info object contains data relating to accessing data within a datastore. If you need to access, manipulate, delete, or retrieve data from a datastore, you'll need a database query written using a specific syntax.", - "extends": "object", + "extends": "_entity", "name": "query_info", "attributes": { "query_time": { From c507eb468a799bb1681a9b8f4707ad1e26ddf54b Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:47:41 -0500 Subject: [PATCH 62/73] Update table.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/table.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/table.json b/objects/table.json index 7fb5ecf2e..258fce6ac 100644 --- a/objects/table.json +++ b/objects/table.json @@ -1,7 +1,7 @@ { "caption": "Table", "description": "The table object represents a table within a structured relational database or datastore, which contains columns and rows of data that are able to be create, updated, deleted and queried.", - "extends": "object", + "extends": "_entity", "name": "table", "attributes": { "created_time": { From b8b338b39e754310efca453e7b20614c50903e01 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:55:23 -0500 Subject: [PATCH 63/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index 577193935..d33197e2c 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -31,7 +31,7 @@ }, "type": { "description": "The database type.", - "requirement": "required" + "requirement": "recommended" }, "type_id": { "description": "The normalized identifier of the databucket type.", From 7aa4cee7f6cf66f1adce8e30415d8bd5338168cf Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:55:35 -0500 Subject: [PATCH 64/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/database.json b/objects/database.json index abe05b987..2b20ba6e8 100644 --- a/objects/database.json +++ b/objects/database.json @@ -26,7 +26,7 @@ }, "type": { "description": "The database type.", - "requirement": "required" + "requirement": "recommended" }, "type_id": { "description": "The normalized identifier of the database type.", From c047168f5181093d3941d67e904b2b64f0d06374 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:42:53 -0500 Subject: [PATCH 65/73] Update datastore_activity.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- events/application/datastore_activity.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/application/datastore_activity.json b/events/application/datastore_activity.json index 95d405cf5..df8c02f45 100644 --- a/events/application/datastore_activity.json +++ b/events/application/datastore_activity.json @@ -1,6 +1,6 @@ { "uid": 5, - "description": "Datastore events describe general activities (Read, Update, Query, Delete, etc.) which affect datastores or data within those datastores, e.g. (AWS RDS, AWS S3)", + "description": "Datastore events describe general activities (Read, Update, Query, Delete, etc.) which affect datastores or data within those datastores, e.g. (AWS RDS, AWS S3).", "extends": "application", "caption": "Datastore Activity", "name": "datastore_activity", From 8f421feb0d9b5c2fb63c605d3d1d4d003076e082 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:43:51 -0500 Subject: [PATCH 66/73] Update database.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/database.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/database.json b/objects/database.json index 2b20ba6e8..301a69530 100644 --- a/objects/database.json +++ b/objects/database.json @@ -17,7 +17,7 @@ "requirement": "optional" }, "size": { - "description": "The size of database, in bytes.", + "description": "The size of the database in bytes.", "requirement": "optional" }, "groups": { From c9302fd3b97b1c5858e1a7135c52304e5e16bc5d Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:44:26 -0500 Subject: [PATCH 67/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/databucket.json b/objects/databucket.json index d33197e2c..6049c9d97 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -18,7 +18,7 @@ "requirement": "optional" }, "size": { - "description": "The size of data bucket, in bytes.", + "description": "The size of the data bucket in bytes.", "requirement": "optional" }, "file": { From 0c196008b33eb91897a21393ecc854060a25bd43 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:45:19 -0500 Subject: [PATCH 68/73] Update databucket.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/databucket.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/objects/databucket.json b/objects/databucket.json index 6049c9d97..a27f36487 100644 --- a/objects/databucket.json +++ b/objects/databucket.json @@ -1,6 +1,6 @@ { "caption": "Databucket", - "description": "The data bucket object is a basic container that holds data, typically organized through the use of data partitions.", + "description": "The databucket object is a basic container that holds data, typically organized through the use of data partitions.", "extends": "_entity", "name": "databucket", "attributes": { @@ -18,7 +18,7 @@ "requirement": "optional" }, "size": { - "description": "The size of the data bucket in bytes.", + "description": "The size of the databucket in bytes.", "requirement": "optional" }, "file": { @@ -30,7 +30,7 @@ "requirement": "optional" }, "type": { - "description": "The database type.", + "description": "The databucket type.", "requirement": "recommended" }, "type_id": { From 21904faf8c3d7e187d24be7c7b2e2638526c2f52 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:46:06 -0500 Subject: [PATCH 69/73] Update query_info.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/query_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/query_info.json b/objects/query_info.json index 6f91d75b9..15667c4fd 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -10,7 +10,7 @@ }, "query_string": { "caption": "Query String", - "description": "A string representing the query code being run. For example: SELECT *", + "description": "A string representing the query code being run. For example: SELECT * FROM my_table", "requirement": "required" }, "data": { From 51465a128bd25084845e48a849a1293d732f96de Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:46:23 -0500 Subject: [PATCH 70/73] Update query_info.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/query_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/query_info.json b/objects/query_info.json index 15667c4fd..9eed66ff5 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -10,7 +10,7 @@ }, "query_string": { "caption": "Query String", - "description": "A string representing the query code being run. For example: SELECT * FROM my_table", + "description": "A string representing the query code being run. For example: SELECT * FROM my_table", "requirement": "required" }, "data": { From 563586b1f9fbd58f7882bfbda038e40d4df57e6b Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:50:56 -0500 Subject: [PATCH 71/73] Update query_info.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/query_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/query_info.json b/objects/query_info.json index 9eed66ff5..48e19c41d 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -1,6 +1,6 @@ { "caption": "Query Information", - "description": "The query info object contains data relating to accessing data within a datastore. If you need to access, manipulate, delete, or retrieve data from a datastore, you'll need a database query written using a specific syntax.", + "description": "The query info object information related to data access within a datastore. To access, manipulate, delete, or retrieve data from a datastore, a query must be written using a specific syntax.", "extends": "_entity", "name": "query_info", "attributes": { From ddb17bfa2bf67c5491b2f6652fc938c6e2c2edf8 Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:51:19 -0500 Subject: [PATCH 72/73] Update query_info.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/query_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/query_info.json b/objects/query_info.json index 48e19c41d..1f2918bdc 100644 --- a/objects/query_info.json +++ b/objects/query_info.json @@ -1,6 +1,6 @@ { "caption": "Query Information", - "description": "The query info object information related to data access within a datastore. To access, manipulate, delete, or retrieve data from a datastore, a query must be written using a specific syntax.", + "description": "The query info object holds information related to data access within a datastore. To access, manipulate, delete, or retrieve data from a datastore, a query must be written using a specific syntax.", "extends": "_entity", "name": "query_info", "attributes": { From 6a5d950bbd5d5dad758e9bbc872a31ac7ee62f2f Mon Sep 17 00:00:00 2001 From: Adam Gregory <64800793+pladam@users.noreply.github.com> Date: Thu, 21 Dec 2023 11:11:53 -0500 Subject: [PATCH 73/73] Update table.json Signed-off-by: Adam Gregory <64800793+pladam@users.noreply.github.com> --- objects/table.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/table.json b/objects/table.json index 258fce6ac..48eff1fee 100644 --- a/objects/table.json +++ b/objects/table.json @@ -18,7 +18,7 @@ "requirement": "optional" }, "size": { - "description": "The size of data table, in bytes.", + "description": "The size of the data table in bytes.", "requirement": "optional" }, "groups": {