-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
We need to develop a simple strategy for storing non-file types (email, ip addresses, domain names). Our current scheme could almost work. However, we cannot use SASI indexing on Cassandra due to the object name array. Additionally, we need a way to easily dedup entries.
@zhanif3 @cynexit what are your thoughts?
Current scheme for object as follows:
{
"_id": UUID,
"sha1: str,
"sha256": str,
"md5": str,
"mime": str,
"source": []str,
"obj_name": []str,
"submissions" []UUID,
}
Current scheme for submission as follows:
{
"_id": UUID
"object": UUID,
"user_id": str,
"source": str,
"date": ISO8601,
"obj_name": str,
"tags": []str,
"comment": str,
}
Metadata
Metadata
Assignees
Labels
No labels