Vrishab80 commited on
Commit
d9664a4
·
verified ·
1 Parent(s): 396f2cb

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - synthetic
9
+ - ediscovery
10
+ - document-review
11
+ - legal-tech
12
+ size_categories:
13
+ - n<1K
14
+ ---
15
+
16
+ # Apex Telecommunications Document Relevance Review (Synthetic)
17
+
18
+ A fully synthetic eDiscovery / internal-investigation dataset built to test whether an AI agent can
19
+ perform first-pass **relevance coding** on a realistic, adversarial document population.
20
+
21
+ ## The scenario
22
+
23
+ Apex Telecommunications, Inc. suspects Senior Sales Manager Michael Carter of sharing confidential
24
+ pricing and customer information with a competitor, Northstar Communications, before and during his
25
+ departure from the company. The dataset contains 138 documents (emails, chat logs, meeting notes, and
26
+ attachments) spanning the six-month investigation period (Jan 1 - Jun 30, 2025).
27
+
28
+ **All people, companies, and events are fictional.**
29
+
30
+ ## Why it's adversarial
31
+
32
+ The document set is deliberately constructed to defeat naive keyword-matching approaches:
33
+
34
+ - **Keyword traps** — the competitor's name appears in clearly irrelevant documents, and a
35
+ similarly-named but unrelated company ("Northgate" vs. "Northstar") is designed to trigger false
36
+ positives.
37
+ - **Authorship bias** — several benign documents are authored by the subject of the investigation.
38
+ - **Document families** — one relevant document's evidence lives entirely in an attachment referenced
39
+ by a generic "see attached" email.
40
+ - **Buried evidence** — a genuinely relevant admission is nested inside a multi-level forwarded email
41
+ chain.
42
+ - **Genuine ambiguity** — a set of documents are honestly unclear even to a human reviewer, testing
43
+ whether a reviewer (human or AI) has the judgment to escalate rather than force a confident guess.
44
+
45
+ ## Labels
46
+
47
+ Each document is labeled with one of three classes:
48
+
49
+ | Label | Count | Meaning |
50
+ |---|---|---|
51
+ | `Relevant` | 30 | Contains evidence of disclosure, competitor communication, intent, or concealment |
52
+ | `Not Relevant` | 80 | Routine, unrelated business communication |
53
+ | `Needs Human Review` | 28 | Genuinely ambiguous — should be escalated, not guessed |
54
+
55
+ ## Files
56
+
57
+ - `data.jsonl` — one row per document: `doc_id`, `text`, `date`, `author`, `recipient`, `cc`, `type`,
58
+ `subject`, `label`, `reason`. This is the file the Hugging Face Dataset Viewer will render and what
59
+ `load_dataset()` picks up automatically.
60
+ - `documents/` — the original raw documents as individual `.txt` files, in the format an agent would
61
+ actually be handed (headers + body), for use in agentic/tool-use evaluations rather than plain
62
+ classification.
63
+ - `document_metadata.csv` — the metadata table on its own.
64
+ - `ground_truth.csv` — the label/reason table on its own.
65
+ - `review_protocol.docx` — the relevance criteria reviewers (human or AI) were asked to apply.
66
+ - `score_output.py` — scores a model's predictions (`ai_output.csv`) against `ground_truth.csv`,
67
+ reporting accuracy, precision, recall, and F1, with `Needs Human Review` treated as a correct
68
+ escalation rather than a miss.
69
+
70
+ ## Loading
71
+
72
+ ```python
73
+ from datasets import load_dataset
74
+
75
+ ds = load_dataset("YOUR_USERNAME/apex-document-relevance-review")
76
+ print(ds["train"][0])
77
+ ```
78
+
79
+ ## Intended use
80
+
81
+ Built as a course project testing whether a frontier AI agent can perform accurate, well-reasoned
82
+ first-pass document relevance review. Useful as a small benchmark for agentic document review,
83
+ legal-tech / eDiscovery tooling evaluation, or prompt-engineering experiments around grounded
84
+ classification with an abstain option.
data.jsonl ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"doc_id": "DOC001", "text": "From: Alex Kim <akim@apextelecom.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nDate: March 8, 2025\nSubject: Expense report\n\nHey,\n\nCan you send me the agenda for expense report? Want to make sure I'm prepared.\n\nThanks,\nAlex\n", "date": "03/08/25", "author": "Alex Kim", "recipient": "Michael Carter", "cc": "", "type": "Email", "subject": "Expense report", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
2
+ {"doc_id": "DOC002", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Alex Kim <akim@apextelecom.com>\nDate: June 19, 2025\nSubject: Meridian Corp check-in\n\nHi team,\n\nHad a good call with Meridian Corp today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.\n\nMichael\n", "date": "06/19/25", "author": "Michael Carter", "recipient": "Alex Kim", "cc": "", "type": "Email", "subject": "Meridian Corp check-in", "label": "Not Relevant", "reason": "Routine, legitimate customer account update with no evidence of improper disclosure."}
3
+ {"doc_id": "DOC003", "text": "From: Linda Park <lpark@apextelecom.com>\nTo: Sarah Johnson <sjohnson@apextelecom.com>\nDate: June 11, 2025\nSubject: System maintenance window\n\nHi,\n\nSharing an update on system maintenance window. Nothing urgent, just keeping everyone informed.\n\nLinda\n", "date": "06/11/25", "author": "Linda Park", "recipient": "Sarah Johnson", "cc": "", "type": "Email", "subject": "System maintenance window", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
4
+ {"doc_id": "DOC004", "text": "Chat Log: Priya Patel <-> Mark Delgado\nDate: March 1, 2025\nChannel: Direct Message\n\nPriya Patel: hey are we still on for the lunch?\nMark Delgado: yep works for me, see you then\n", "date": "03/01/25", "author": "Priya Patel", "recipient": "Mark Delgado", "cc": "", "type": "Chat", "subject": "lunch", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
5
+ {"doc_id": "DOC005", "text": "From: Karen Wilson <kwilson@apextelecom.com>\nTo: Nina Torres <ntorres@apextelecom.com>\nDate: April 12, 2025\nSubject: Office supply order\n\nAll,\n\nQuick update on office supply order - everything is on track, no action needed from you.\n\nKaren\n", "date": "04/12/25", "author": "Karen Wilson", "recipient": "Nina Torres", "cc": "", "type": "Email", "subject": "Office supply order", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
6
+ {"doc_id": "DOC006", "text": "Chat Log: Michael Carter <-> Robert Smith\nDate: February 25, 2025\nChannel: Direct Message\n\nRobert Smith: hey did you get a chance to pull that customer list?\nMichael Carter: yeah, sending it from my personal email tonight so it doesn't show up on the apex server\nRobert Smith: perfect, appreciate it\n", "date": "02/25/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Chat", "subject": "customer list", "label": "Relevant", "reason": "Michael discusses transmitting the Apex customer list to a Northstar employee and evading company monitoring."}
7
+ {"doc_id": "DOC007", "text": "From: Alex Kim <akim@apextelecom.com>\nTo: Priya Patel <ppatel@apextelecom.com>\nDate: June 7, 2025\nSubject: Sales training materials\n\nHi,\n\nSharing an update on sales training materials. Nothing urgent, just keeping everyone informed.\n\nAlex\n", "date": "06/07/25", "author": "Alex Kim", "recipient": "Priya Patel", "cc": "", "type": "Email", "subject": "Sales training materials", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
8
+ {"doc_id": "DOC008", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Karen Wilson <kwilson@apextelecom.com>\nDate: April 9, 2025\nSubject: Team lunch Friday\n\nHey,\n\nCan you send me the agenda for team lunch friday? Want to make sure I'm prepared.\n\nThanks,\nMichael\n", "date": "04/09/25", "author": "Michael Carter", "recipient": "Karen Wilson", "cc": "", "type": "Email", "subject": "Team lunch Friday", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
9
+ {"doc_id": "DOC009", "text": "ATTACHMENT\nFile Name: benefits_summary.pdf\nDate: May 1, 2025\n\nStandard internal reference document. No customer, pricing, or confidential information related to the investigation.\n", "date": "05/01/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "benefits_summary.pdf", "label": "Not Relevant", "reason": "Generic internal reference material unrelated to the allegation."}
10
+ {"doc_id": "DOC010", "text": "MEETING NOTES\nTitle: Sales Pipeline Review\nDate: June 23, 2025\nAttendees: Tom Reyes, Sarah Johnson, Michael Carter\n\nMichael's numbers for the quarter were notably lower than peers. Tom asked whether there were any deals at risk; Michael mentioned 'a few things in motion' without elaborating.\n", "date": "06/23/25", "author": "Tom Reyes", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "Sales Pipeline Review", "label": "Needs Human Review", "reason": "Vague comment during a routine business meeting that could suggest undisclosed activity, but lacks specificity."}
11
+ {"doc_id": "DOC011", "text": "ATTACHMENT\nFile Name: Q1_sales_deck.pptx\nDate: March 7, 2025\n\nStandard internal reference document. No customer, pricing, or confidential information related to the investigation.\n", "date": "03/07/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "Q1_sales_deck.pptx", "label": "Not Relevant", "reason": "Generic internal reference material unrelated to the allegation."}
12
+ {"doc_id": "DOC012", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Robert Smith <robert.smith@northstarcomm.com>\nDate: May 14, 2025\nSubject: Falcon Industries pricing\n\nRobert,\n\nAttached is the current pricing sheet we discussed for Falcon Industries. Please don't forward this outside Northstar - I'd rather Apex not know we talked.\n\nMichael\n", "date": "05/14/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Email", "subject": "Falcon Industries pricing", "label": "Relevant", "reason": "Direct evidence Michael sent Apex pricing information to a Northstar employee and asked for secrecy."}
13
+ {"doc_id": "DOC013", "text": "ATTACHMENT\nFile Name: Redstone Retail_pricing_sheet_CONFIDENTIAL.xlsx\nDate: April 3, 2025\n\nAPEX TELECOMMUNICATIONS - INTERNAL USE ONLY\n\nCustomer: Redstone Retail\nNegotiated Rate: $354/unit\nContract Term: 24 months\nInternal Cost Basis: $37/unit\nSales Rep: Michael Carter\n\nDO NOT DISTRIBUTE OUTSIDE APEX.\n", "date": "04/03/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "Redstone Retail_pricing_sheet_CONFIDENTIAL.xlsx", "label": "Relevant", "reason": "Confidential internal Apex pricing document found in the population; corresponds to an email Michael sent externally."}
14
+ {"doc_id": "DOC014", "text": "From: Sarah Johnson <sjohnson@apextelecom.com>\nTo: Karen Wilson <kwilson@apextelecom.com>\nDate: May 7, 2025\nSubject: Question about a former contact\n\nKaren,\n\nMichael mentioned in passing that he 'still talks to people' at Northstar from a prior role. Wanted to flag in case it's relevant, though it may be nothing.\n\nSarah\n", "date": "05/07/25", "author": "Sarah Johnson", "recipient": "Karen Wilson", "cc": "", "type": "Email", "subject": "Question about a former contact", "label": "Needs Human Review", "reason": "Manager flags a vague, secondhand comment about competitor contact that requires further investigation to interpret."}
15
+ {"doc_id": "DOC015", "text": "From: Karen Wilson <kwilson@apextelecom.com>\nTo: Emily Brown <ebrown@apextelecom.com>\nDate: June 27, 2025\nSubject: Litigation hold - Carter\n\nEmily,\n\nPlease issue a litigation hold notice covering Michael Carter's email, chat, and file activity effective immediately. We have reason to believe confidential customer and pricing information may have been shared with a competitor.\n\nKaren\n", "date": "06/27/25", "author": "Karen Wilson", "recipient": "Emily Brown", "cc": "", "type": "Email", "subject": "Litigation hold - Carter", "label": "Relevant", "reason": "Legal hold notice directly referencing the suspected disclosure of confidential information - core investigation document."}
16
+ {"doc_id": "DOC016", "text": "Chat Log: Michael Carter <-> David Lee\nDate: April 28, 2025\nChannel: Direct Message\n\nMichael Carter: honestly kind of over it here, thinking about other options\nDavid Lee: you should look around, no shame in that\n", "date": "04/28/25", "author": "Michael Carter", "recipient": "David Lee", "cc": "", "type": "Chat", "subject": "job search", "label": "Needs Human Review", "reason": "Suggests Michael may have been considering leaving Apex, which is contextually relevant to motive but not direct evidence of disclosure."}
17
+ {"doc_id": "DOC017", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Robert Smith <robert.smith@northstarcomm.com>\nDate: February 17, 2025\nSubject: Titan Manufacturing pricing\n\nRobert,\n\nAttached is the current pricing sheet we discussed for Titan Manufacturing. Please don't forward this outside Northstar - I'd rather Apex not know we talked.\n\nMichael\n", "date": "02/17/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Email", "subject": "Titan Manufacturing pricing", "label": "Relevant", "reason": "Direct evidence Michael sent Apex pricing information to a Northstar employee and asked for secrecy."}
18
+ {"doc_id": "DOC018", "text": "MEETING NOTES\nTitle: Q2 Planning\nDate: March 20, 2025\nAttendees: Sarah Johnson, Priya Patel, David Lee\n\nDiscussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.\n", "date": "03/20/25", "author": "Sarah Johnson", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "Q2 Planning", "label": "Not Relevant", "reason": "Standard internal meeting notes with no connection to the competitor or confidential disclosures."}
19
+ {"doc_id": "DOC019", "text": "From: Nina Torres <ntorres@apextelecom.com>\nTo: Priya Patel <ppatel@apextelecom.com>\nDate: March 6, 2025\nSubject: Northgate Systems demo\n\nPriya,\n\nNorthgate Systems (the software vendor, not a telecom competitor) wants to demo their new billing platform next week. Can you sit in?\n\nNina\n", "date": "03/06/25", "author": "Nina Torres", "recipient": "Priya Patel", "cc": "", "type": "Email", "subject": "Northgate Systems demo", "label": "Needs Human Review", "reason": "Company name is similar to the competitor ('Northgate' vs 'Northstar') and could be mis-flagged by simple keyword matching."}
20
+ {"doc_id": "DOC020", "text": "Chat Log: Michael Carter <-> Robert Smith\nDate: January 13, 2025\nChannel: Direct Message\n\nRobert Smith: hey did you get a chance to pull that customer list?\nMichael Carter: yeah, sending it from my personal email tonight so it doesn't show up on the apex server\nRobert Smith: perfect, appreciate it\n", "date": "01/13/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Chat", "subject": "customer list", "label": "Relevant", "reason": "Michael discusses transmitting the Apex customer list to a Northstar employee and evading company monitoring."}
21
+ {"doc_id": "DOC021", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Robert Smith <robert.smith@northstarcomm.com>\nDate: June 4, 2025\nSubject: BlueWave Networks pricing\n\nRobert,\n\nAttached is the current pricing sheet we discussed for BlueWave Networks. Please don't forward this outside Northstar - I'd rather Apex not know we talked.\n\nMichael\n", "date": "06/04/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Email", "subject": "BlueWave Networks pricing", "label": "Relevant", "reason": "Direct evidence Michael sent Apex pricing information to a Northstar employee and asked for secrecy."}
22
+ {"doc_id": "DOC022", "text": "From: Alex Kim <akim@apextelecom.com>\nTo: Chris Evans <cevans@apextelecom.com>\nDate: May 28, 2025\nSubject: Weekly status update\n\nHey,\n\nCan you send me the agenda for weekly status update? Want to make sure I'm prepared.\n\nThanks,\nAlex\n", "date": "05/28/25", "author": "Alex Kim", "recipient": "Chris Evans", "cc": "", "type": "Email", "subject": "Weekly status update", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
23
+ {"doc_id": "DOC023", "text": "From: David Lee <dlee@apextelecom.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nDate: May 24, 2025\nSubject: Sunrise Health Systems check-in\n\nHi team,\n\nHad a good call with Sunrise Health Systems today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.\n\nDavid\n", "date": "05/24/25", "author": "David Lee", "recipient": "Michael Carter", "cc": "", "type": "Email", "subject": "Sunrise Health Systems check-in", "label": "Not Relevant", "reason": "Routine, legitimate customer account update with no evidence of improper disclosure."}
24
+ {"doc_id": "DOC024", "text": "ATTACHMENT\nFile Name: team_org_chart.pdf\nDate: May 2, 2025\n\nStandard internal reference document. No customer, pricing, or confidential information related to the investigation.\n", "date": "05/02/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "team_org_chart.pdf", "label": "Not Relevant", "reason": "Generic internal reference material unrelated to the allegation."}
25
+ {"doc_id": "DOC025", "text": "ATTACHMENT\nFile Name: Falcon Industries_pricing_sheet_CONFIDENTIAL.xlsx\nDate: February 25, 2025\n\nAPEX TELECOMMUNICATIONS - INTERNAL USE ONLY\n\nCustomer: Falcon Industries\nNegotiated Rate: $103/unit\nContract Term: 24 months\nInternal Cost Basis: $72/unit\nSales Rep: Michael Carter\n\nDO NOT DISTRIBUTE OUTSIDE APEX.\n", "date": "02/25/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "Falcon Industries_pricing_sheet_CONFIDENTIAL.xlsx", "label": "Relevant", "reason": "Confidential internal Apex pricing document found in the population; corresponds to an email Michael sent externally."}
26
+ {"doc_id": "DOC026", "text": "Chat Log: Michael Carter <-> Robert Smith\nDate: March 4, 2025\nChannel: Direct Message\n\nRobert Smith: hey did you get a chance to pull that customer list?\nMichael Carter: yeah, sending it from my personal email tonight so it doesn't show up on the apex server\nRobert Smith: perfect, appreciate it\n", "date": "03/04/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Chat", "subject": "customer list", "label": "Relevant", "reason": "Michael discusses transmitting the Apex customer list to a Northstar employee and evading company monitoring."}
27
+ {"doc_id": "DOC027", "text": "Chat Log: David Lee <-> Mark Delgado\nDate: May 8, 2025\nChannel: Direct Message\n\nDavid Lee: hey are we still on for the meeting time?\nMark Delgado: yep works for me, see you then\n", "date": "05/08/25", "author": "David Lee", "recipient": "Mark Delgado", "cc": "", "type": "Chat", "subject": "meeting time", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
28
+ {"doc_id": "DOC028", "text": "From: David Lee <dlee@apextelecom.com>\nTo: Priya Patel <ppatel@apextelecom.com>\nDate: June 9, 2025\nSubject: Q1 sales meeting\n\nAll,\n\nQuick update on q1 sales meeting - everything is on track, no action needed from you.\n\nDavid\n", "date": "06/09/25", "author": "David Lee", "recipient": "Priya Patel", "cc": "", "type": "Email", "subject": "Q1 sales meeting", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
29
+ {"doc_id": "DOC029", "text": "Chat Log: Priya Patel <-> Chris Evans\nDate: February 28, 2025\nChannel: Direct Message\n\nPriya Patel: hey are we still on for the weekend plans?\nChris Evans: yep works for me, see you then\n", "date": "02/28/25", "author": "Priya Patel", "recipient": "Chris Evans", "cc": "", "type": "Chat", "subject": "weekend plans", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
30
+ {"doc_id": "DOC030", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Robert Smith <robert.smith@northstarcomm.com>\nDate: January 3, 2025\nSubject: Meridian Corp pricing\n\nRobert,\n\nAttached is the current pricing sheet we discussed for Meridian Corp. Please don't forward this outside Northstar - I'd rather Apex not know we talked.\n\nMichael\n", "date": "01/03/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Email", "subject": "Meridian Corp pricing", "label": "Relevant", "reason": "Direct evidence Michael sent Apex pricing information to a Northstar employee and asked for secrecy."}
31
+ {"doc_id": "DOC031", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Sarah Johnson <sjohnson@apextelecom.com>\nDate: February 14, 2025\nSubject: Sales meeting agenda\n\nHi,\n\nCan you send me the agenda for tomorrow's sales meeting? Want to make sure I bring the right numbers.\n\nMichael\n", "date": "02/14/25", "author": "Michael Carter", "recipient": "Sarah Johnson", "cc": "", "type": "Email", "subject": "Sales meeting agenda", "label": "Needs Human Review", "reason": "Authored by the subject of the investigation, but content is routine - relevance should not be assumed from authorship alone."}
32
+ {"doc_id": "DOC032", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: David Lee <dlee@apextelecom.com>\nDate: May 7, 2025\nSubject: Redstone Retail check-in\n\nHi team,\n\nHad a good call with Redstone Retail today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.\n\nMichael\n", "date": "05/07/25", "author": "Michael Carter", "recipient": "David Lee", "cc": "", "type": "Email", "subject": "Redstone Retail check-in", "label": "Not Relevant", "reason": "Routine, legitimate customer account update with no evidence of improper disclosure."}
33
+ {"doc_id": "DOC033", "text": "ATTACHMENT\nFile Name: team_org_chart.pdf\nDate: April 5, 2025\n\nStandard internal reference document. No customer, pricing, or confidential information related to the investigation.\n", "date": "04/05/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "team_org_chart.pdf", "label": "Not Relevant", "reason": "Generic internal reference material unrelated to the allegation."}
34
+ {"doc_id": "DOC034", "text": "From: Karen Wilson <kwilson@apextelecom.com>\nTo: Mark Delgado <mdelgado@apextelecom.com>\nDate: June 6, 2025\nSubject: PTO request\n\nAll,\n\nQuick update on pto request - everything is on track, no action needed from you.\n\nKaren\n", "date": "06/06/25", "author": "Karen Wilson", "recipient": "Mark Delgado", "cc": "", "type": "Email", "subject": "PTO request", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
35
+ {"doc_id": "DOC035", "text": "Chat Log: Michael Carter <-> Robert Smith\nDate: January 13, 2025\nChannel: Direct Message\n\nMichael Carter: I can get you our full rate card for the healthcare vertical, just give me a day\nRobert Smith: that would be huge for us, we're bidding against Apex on Sunrise Health next month\nMichael Carter: on it\n", "date": "01/13/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Chat", "subject": "pricing structure", "label": "Relevant", "reason": "Michael offers to provide competitor with Apex's confidential rate card ahead of a competing bid."}
36
+ {"doc_id": "DOC036", "text": "From: Chris Evans <cevans@apextelecom.com>\nTo: Linda Park <lpark@apextelecom.com>\nDate: June 23, 2025\nSubject: IT ticket - laptop issue\n\nAll,\n\nQuick update on it ticket - laptop issue - everything is on track, no action needed from you.\n\nChris\n", "date": "06/23/25", "author": "Chris Evans", "recipient": "Linda Park", "cc": "", "type": "Email", "subject": "IT ticket - laptop issue", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
37
+ {"doc_id": "DOC037", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Alex Kim <akim@apextelecom.com>\nDate: January 17, 2025\nSubject: System maintenance window\n\nHi,\n\nSharing an update on system maintenance window. Nothing urgent, just keeping everyone informed.\n\nMichael\n", "date": "01/17/25", "author": "Michael Carter", "recipient": "Alex Kim", "cc": "", "type": "Email", "subject": "System maintenance window", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
38
+ {"doc_id": "DOC038", "text": "From: Nina Torres <ntorres@apextelecom.com>\nTo: Priya Patel <ppatel@apextelecom.com>\nDate: February 12, 2025\nSubject: CRM login issue\n\nHi Priya,\n\nJust a reminder about crm login issue. Let me know if you have questions.\n\nNina\n", "date": "02/12/25", "author": "Nina Torres", "recipient": "Priya Patel", "cc": "", "type": "Email", "subject": "CRM login issue", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
39
+ {"doc_id": "DOC039", "text": "From: Alex Kim <akim@apextelecom.com>\nTo: Emily Brown <ebrown@apextelecom.com>\nDate: June 23, 2025\nSubject: Coastal Logistics check-in\n\nHi team,\n\nHad a good call with Coastal Logistics today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.\n\nAlex\n", "date": "06/23/25", "author": "Alex Kim", "recipient": "Emily Brown", "cc": "", "type": "Email", "subject": "Coastal Logistics check-in", "label": "Not Relevant", "reason": "Routine, legitimate customer account update with no evidence of improper disclosure."}
40
+ {"doc_id": "DOC040", "text": "MEETING NOTES\nTitle: Client Renewal Review\nDate: May 23, 2025\nAttendees: Tom Reyes, Karen Wilson, David Lee\n\nDiscussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.\n", "date": "05/23/25", "author": "Tom Reyes", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "Client Renewal Review", "label": "Not Relevant", "reason": "Standard internal meeting notes with no connection to the competitor or confidential disclosures."}
41
+ {"doc_id": "DOC041", "text": "From: Sarah Johnson <sjohnson@apextelecom.com>\nTo: Tom Reyes <treyes@apextelecom.com>\nDate: May 10, 2025\nSubject: Facilities update\n\nHi,\n\nSharing an update on facilities update. Nothing urgent, just keeping everyone informed.\n\nSarah\n", "date": "05/10/25", "author": "Sarah Johnson", "recipient": "Tom Reyes", "cc": "", "type": "Email", "subject": "Facilities update", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
42
+ {"doc_id": "DOC042", "text": "Chat Log: Michael Carter <-> David Lee\nDate: May 28, 2025\nChannel: Direct Message\n\nDavid Lee: did you see the new public pricing page?\nMichael Carter: yeah looks fine to me, nothing new there\n", "date": "05/28/25", "author": "Michael Carter", "recipient": "David Lee", "cc": "", "type": "Chat", "subject": "pricing page", "label": "Needs Human Review", "reason": "Michael discusses 'pricing' but the context suggests publicly available information rather than confidential data."}
43
+ {"doc_id": "DOC043", "text": "Chat Log: Michael Carter <-> Robert Smith\nDate: January 12, 2025\nChannel: Direct Message\n\nRobert Smith: hey did you get a chance to pull that customer list?\nMichael Carter: yeah, sending it from my personal email tonight so it doesn't show up on the apex server\nRobert Smith: perfect, appreciate it\n", "date": "01/12/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Chat", "subject": "customer list", "label": "Relevant", "reason": "Michael discusses transmitting the Apex customer list to a Northstar employee and evading company monitoring."}
44
+ {"doc_id": "DOC044", "text": "From: Karen Wilson <kwilson@apextelecom.com>\nTo: Mark Delgado <mdelgado@apextelecom.com>\nDate: March 14, 2025\nSubject: Parking garage closure\n\nHi Mark,\n\nJust a reminder about parking garage closure. Let me know if you have questions.\n\nKaren\n", "date": "03/14/25", "author": "Karen Wilson", "recipient": "Mark Delgado", "cc": "", "type": "Email", "subject": "Parking garage closure", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
45
+ {"doc_id": "DOC045", "text": "From: Mark Delgado <mdelgado@apextelecom.com>\nTo: David Lee <dlee@apextelecom.com>\nDate: June 3, 2025\nSubject: Client satisfaction survey results\n\nHi,\n\nSharing an update on client satisfaction survey results. Nothing urgent, just keeping everyone informed.\n\nMark\n", "date": "06/03/25", "author": "Mark Delgado", "recipient": "David Lee", "cc": "", "type": "Email", "subject": "Client satisfaction survey results", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
46
+ {"doc_id": "DOC046", "text": "MEETING NOTES\nTitle: Client Renewal Review\nDate: March 2, 2025\nAttendees: Karen Wilson, Michael Carter, Sarah Johnson\n\nDiscussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.\n", "date": "03/02/25", "author": "Karen Wilson", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "Client Renewal Review", "label": "Not Relevant", "reason": "Standard internal meeting notes with no connection to the competitor or confidential disclosures."}
47
+ {"doc_id": "DOC047", "text": "Chat Log: Priya Patel <-> Nina Torres\nDate: February 13, 2025\nChannel: Direct Message\n\nPriya Patel: hey are we still on for the lunch?\nNina Torres: yep works for me, see you then\n", "date": "02/13/25", "author": "Priya Patel", "recipient": "Nina Torres", "cc": "", "type": "Chat", "subject": "lunch", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
48
+ {"doc_id": "DOC048", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Robert Smith <robert.smith@northstarcomm.com>\nDate: February 9, 2025\nSubject: See attached\n\nRobert,\n\nSee attached. Let me know if you need anything else formatted differently.\n\nMichael\n\n[Attachment: customer_master_list_Q1.xlsx (DOC058)]\n", "date": "02/09/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Email", "subject": "See attached", "label": "Needs Human Review", "reason": "The email body alone is generic ('see attached'); relevance depends entirely on the linked attachment, which a reviewer must consider as part of the same document family."}
49
+ {"doc_id": "DOC049", "text": "Chat Log: Mark Delgado <-> David Lee\nDate: April 8, 2025\nChannel: Direct Message\n\nMark Delgado: hey are we still on for the sports?\nDavid Lee: yep works for me, see you then\n", "date": "04/08/25", "author": "Mark Delgado", "recipient": "David Lee", "cc": "", "type": "Chat", "subject": "sports", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
50
+ {"doc_id": "DOC050", "text": "From: David Lee <dlee@apextelecom.com>\nTo: Tom Reyes <treyes@apextelecom.com>\nDate: April 5, 2025\nSubject: Coastal Logistics check-in\n\nHi team,\n\nHad a good call with Coastal Logistics today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.\n\nDavid\n", "date": "04/05/25", "author": "David Lee", "recipient": "Tom Reyes", "cc": "", "type": "Email", "subject": "Coastal Logistics check-in", "label": "Not Relevant", "reason": "Routine, legitimate customer account update with no evidence of improper disclosure."}
51
+ {"doc_id": "DOC051", "text": "MEETING NOTES\nTitle: 1:1 - Michael / Sarah\nDate: March 15, 2025\nAttendees: Sarah Johnson, Michael Carter\n\nSarah raised concerns about Michael's declining pipeline activity and asked directly whether he has been in contact with Northstar. Michael denied any contact. Sarah noted increased personal phone use during client calls and recommended IT review his email activity.\n", "date": "03/15/25", "author": "Sarah Johnson", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "1:1 - Michael / Sarah", "label": "Relevant", "reason": "Internal record documenting management's suspicion and a direct (denied) question about contact with the competitor."}
52
+ {"doc_id": "DOC052", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Robert Smith <robert.smith@northstarcomm.com>\nDate: January 24, 2025\nSubject: Falcon Industries pricing\n\nRobert,\n\nAttached is the current pricing sheet we discussed for Falcon Industries. Please don't forward this outside Northstar - I'd rather Apex not know we talked.\n\nMichael\n", "date": "01/24/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Email", "subject": "Falcon Industries pricing", "label": "Relevant", "reason": "Direct evidence Michael sent Apex pricing information to a Northstar employee and asked for secrecy."}
53
+ {"doc_id": "DOC053", "text": "From: Robert Smith <robert.smith@northstarcomm.com>\nTo: Jessica Nguyen <jessica.nguyen@northstarcomm.com>\nDate: March 24, 2025\nSubject: Re: Apex intel\n\nJessica,\n\nMichael came through again - got us Harbor Financial Group's renewal date and current rate. This puts us in a great spot to underbid when it comes up.\n\nRobert\n", "date": "03/24/25", "author": "Robert Smith", "recipient": "Jessica Nguyen", "cc": "", "type": "Email", "subject": "Re: Apex intel", "label": "Relevant", "reason": "Internal Northstar email confirming receipt and use of confidential Apex competitive information obtained from Michael."}
54
+ {"doc_id": "DOC054", "text": "From: Tom Reyes <treyes@apextelecom.com>\nTo: David Lee <dlee@apextelecom.com>\nDate: February 22, 2025\nSubject: Training session sign-up\n\nHey,\n\nCan you send me the agenda for training session sign-up? Want to make sure I'm prepared.\n\nThanks,\nTom\n", "date": "02/22/25", "author": "Tom Reyes", "recipient": "David Lee", "cc": "", "type": "Email", "subject": "Training session sign-up", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
55
+ {"doc_id": "DOC055", "text": "ATTACHMENT\nFile Name: benefits_summary.pdf\nDate: May 23, 2025\n\nStandard internal reference document. No customer, pricing, or confidential information related to the investigation.\n", "date": "05/23/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "benefits_summary.pdf", "label": "Not Relevant", "reason": "Generic internal reference material unrelated to the allegation."}
56
+ {"doc_id": "DOC056", "text": "Chat Log: Priya Patel <-> Chris Evans\nDate: June 21, 2025\nChannel: Direct Message\n\nPriya Patel: hey are we still on for the weekend plans?\nChris Evans: yep works for me, see you then\n", "date": "06/21/25", "author": "Priya Patel", "recipient": "Chris Evans", "cc": "", "type": "Chat", "subject": "weekend plans", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
57
+ {"doc_id": "DOC057", "text": "ATTACHMENT\nFile Name: Q1_sales_deck.pptx\nDate: January 23, 2025\n\nStandard internal reference document. No customer, pricing, or confidential information related to the investigation.\n", "date": "01/23/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "Q1_sales_deck.pptx", "label": "Not Relevant", "reason": "Generic internal reference material unrelated to the allegation."}
58
+ {"doc_id": "DOC058", "text": "ATTACHMENT\nFile Name: customer_master_list_Q1.xlsx\nDate: June 26, 2025\n\nAPEX TELECOMMUNICATIONS - CUSTOMER MASTER LIST\nContains all active customer accounts, contract values, and renewal dates. Confidential - internal use only.\n", "date": "06/26/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "customer_master_list_Q1.xlsx", "label": "Relevant", "reason": "The attachment itself contains the confidential customer master list."}
59
+ {"doc_id": "DOC059", "text": "From: Mark Delgado <mdelgado@apextelecom.com>\nTo: Emily Brown <ebrown@apextelecom.com>\nDate: March 8, 2025\nSubject: Unusual login activity\n\nEmily,\n\nFlagging that Michael Carter's account had two large file downloads from outside normal business hours last week. Not sure if this is worth escalating.\n\nMark\n", "date": "03/08/25", "author": "Mark Delgado", "recipient": "Emily Brown", "cc": "", "type": "Email", "subject": "Unusual login activity", "label": "Needs Human Review", "reason": "IT security observation about unusual account activity - circumstantial but not direct evidence of disclosure."}
60
+ {"doc_id": "DOC060", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Karen Wilson <kwilson@apextelecom.com>\nDate: January 24, 2025\nSubject: Travel reimbursement\n\nHi Karen,\n\nJust a reminder about travel reimbursement. Let me know if you have questions.\n\nMichael\n", "date": "01/24/25", "author": "Michael Carter", "recipient": "Karen Wilson", "cc": "", "type": "Email", "subject": "Travel reimbursement", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
61
+ {"doc_id": "DOC061", "text": "Chat Log: David Lee <-> Michael Carter\nDate: January 2, 2025\nChannel: Direct Message\n\nDavid Lee: hey do you still have contacts at Northstar from before?\nMichael Carter: a couple, why?\n", "date": "01/02/25", "author": "David Lee", "recipient": "Michael Carter", "cc": "", "type": "Chat", "subject": "quick question", "label": "Needs Human Review", "reason": "Coworker asks Michael about competitor contacts; Michael's brief response doesn't confirm or deny improper conduct."}
62
+ {"doc_id": "DOC062", "text": "Chat Log: Mark Delgado <-> David Lee\nDate: January 25, 2025\nChannel: Direct Message\n\nMark Delgado: hey are we still on for the lunch?\nDavid Lee: yep works for me, see you then\n", "date": "01/25/25", "author": "Mark Delgado", "recipient": "David Lee", "cc": "", "type": "Chat", "subject": "lunch", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
63
+ {"doc_id": "DOC063", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Sarah Johnson <sjohnson@apextelecom.com>\nDate: February 28, 2025\nSubject: Sales meeting agenda\n\nHi,\n\nCan you send me the agenda for tomorrow's sales meeting? Want to make sure I bring the right numbers.\n\nMichael\n", "date": "02/28/25", "author": "Michael Carter", "recipient": "Sarah Johnson", "cc": "", "type": "Email", "subject": "Sales meeting agenda", "label": "Needs Human Review", "reason": "Authored by the subject of the investigation, but content is routine - relevance should not be assumed from authorship alone."}
64
+ {"doc_id": "DOC064", "text": "From: David Lee <dlee@apextelecom.com>\nTo: Alex Kim <akim@apextelecom.com>\nDate: January 4, 2025\nSubject: the numbers\n\nHey,\n\nCan you send me the numbers we talked about? Want to have them ready before Friday.\n\nThanks\n", "date": "01/04/25", "author": "David Lee", "recipient": "Alex Kim", "cc": "", "type": "Email", "subject": "the numbers", "label": "Needs Human Review", "reason": "Vague reference to 'the numbers' without enough context to determine whether this concerns confidential pricing/customer data."}
65
+ {"doc_id": "DOC065", "text": "From: Robert Smith <robert.smith@northstarcomm.com>\nTo: Jessica Nguyen <jessica.nguyen@northstarcomm.com>\nDate: January 4, 2025\nSubject: Re: Apex intel\n\nJessica,\n\nMichael came through again - got us Sunrise Health Systems's renewal date and current rate. This puts us in a great spot to underbid when it comes up.\n\nRobert\n", "date": "01/04/25", "author": "Robert Smith", "recipient": "Jessica Nguyen", "cc": "", "type": "Email", "subject": "Re: Apex intel", "label": "Relevant", "reason": "Internal Northstar email confirming receipt and use of confidential Apex competitive information obtained from Michael."}
66
+ {"doc_id": "DOC066", "text": "From: Priya Patel <ppatel@apextelecom.com>\nTo: Emily Brown <ebrown@apextelecom.com>\nDate: April 9, 2025\nSubject: Weekly status update\n\nHey,\n\nCan you send me the agenda for weekly status update? Want to make sure I'm prepared.\n\nThanks,\nPriya\n", "date": "04/09/25", "author": "Priya Patel", "recipient": "Emily Brown", "cc": "", "type": "Email", "subject": "Weekly status update", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
67
+ {"doc_id": "DOC067", "text": "From: Robert Smith <robert.smith@northstarcomm.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nDate: February 15, 2025\nSubject: Following up\n\nMichael,\n\nThanks for the Harbor Financial Group numbers last week. This is really helpful as we put our bid together. Can you also send the renewal dates for our other target accounts?\n\nRobert\n", "date": "02/15/25", "author": "Robert Smith", "recipient": "Michael Carter", "cc": "", "type": "Email", "subject": "Following up", "label": "Relevant", "reason": "Competitor confirms receipt of Apex pricing/customer information and requests more."}
68
+ {"doc_id": "DOC068", "text": "From: Priya Patel <ppatel@apextelecom.com>\nTo: Sarah Johnson <sjohnson@apextelecom.com>\nDate: May 8, 2025\nSubject: Titan Manufacturing check-in\n\nHi team,\n\nHad a good call with Titan Manufacturing today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.\n\nPriya\n", "date": "05/08/25", "author": "Priya Patel", "recipient": "Sarah Johnson", "cc": "", "type": "Email", "subject": "Titan Manufacturing check-in", "label": "Not Relevant", "reason": "Routine, legitimate customer account update with no evidence of improper disclosure."}
69
+ {"doc_id": "DOC069", "text": "From: Linda Park <lpark@apextelecom.com>\nTo: Karen Wilson <kwilson@apextelecom.com>\nDate: May 5, 2025\nSubject: System maintenance window\n\nHi,\n\nSharing an update on system maintenance window. Nothing urgent, just keeping everyone informed.\n\nLinda\n", "date": "05/05/25", "author": "Linda Park", "recipient": "Karen Wilson", "cc": "", "type": "Email", "subject": "System maintenance window", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
70
+ {"doc_id": "DOC070", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Sarah Johnson <sjohnson@apextelecom.com>\nDate: February 24, 2025\nSubject: Sales meeting agenda\n\nHi,\n\nCan you send me the agenda for tomorrow's sales meeting? Want to make sure I bring the right numbers.\n\nMichael\n", "date": "02/24/25", "author": "Michael Carter", "recipient": "Sarah Johnson", "cc": "", "type": "Email", "subject": "Sales meeting agenda", "label": "Needs Human Review", "reason": "Authored by the subject of the investigation, but content is routine - relevance should not be assumed from authorship alone."}
71
+ {"doc_id": "DOC071", "text": "MEETING NOTES\nTitle: Q2 Planning\nDate: May 16, 2025\nAttendees: Emily Brown, Tom Reyes, Mark Delgado\n\nDiscussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.\n", "date": "05/16/25", "author": "Emily Brown", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "Q2 Planning", "label": "Not Relevant", "reason": "Standard internal meeting notes with no connection to the competitor or confidential disclosures."}
72
+ {"doc_id": "DOC072", "text": "Chat Log: Alex Kim <-> Mark Delgado\nDate: February 3, 2025\nChannel: Direct Message\n\nAlex Kim: hey are we still on for the lunch?\nMark Delgado: yep works for me, see you then\n", "date": "02/03/25", "author": "Alex Kim", "recipient": "Mark Delgado", "cc": "", "type": "Chat", "subject": "lunch", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
73
+ {"doc_id": "DOC073", "text": "Chat Log: Alex Kim <-> Chris Evans\nDate: May 8, 2025\nChannel: Direct Message\n\nAlex Kim: hey are we still on for the lunch?\nChris Evans: yep works for me, see you then\n", "date": "05/08/25", "author": "Alex Kim", "recipient": "Chris Evans", "cc": "", "type": "Chat", "subject": "lunch", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
74
+ {"doc_id": "DOC074", "text": "From: Robert Smith <robert.smith@northstarcomm.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nDate: January 25, 2025\nSubject: Following up\n\nMichael,\n\nThanks for the Sunrise Health Systems numbers last week. This is really helpful as we put our bid together. Can you also send the renewal dates for our other target accounts?\n\nRobert\n", "date": "01/25/25", "author": "Robert Smith", "recipient": "Michael Carter", "cc": "", "type": "Email", "subject": "Following up", "label": "Relevant", "reason": "Competitor confirms receipt of Apex pricing/customer information and requests more."}
75
+ {"doc_id": "DOC075", "text": "From: David Lee <dlee@apextelecom.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nDate: February 22, 2025\nSubject: Customer list access\n\nMichael,\n\nIT flagged that the customer master list was exported twice this month. Just confirming that was you for the renewal push?\n\nDavid\n", "date": "02/22/25", "author": "David Lee", "recipient": "Michael Carter", "cc": "", "type": "Email", "subject": "Customer list access", "label": "Needs Human Review", "reason": "References an export of the confidential customer list but frames it as a routine internal question - context needs verification."}
76
+ {"doc_id": "DOC076", "text": "Chat Log: Michael Carter <-> Alex Kim\nDate: March 27, 2025\nChannel: Direct Message\n\nMichael Carter: honestly kind of over it here, thinking about other options\nAlex Kim: you should look around, no shame in that\n", "date": "03/27/25", "author": "Michael Carter", "recipient": "Alex Kim", "cc": "", "type": "Chat", "subject": "job search", "label": "Needs Human Review", "reason": "Suggests Michael may have been considering leaving Apex, which is contextually relevant to motive but not direct evidence of disclosure."}
77
+ {"doc_id": "DOC077", "text": "Chat Log: Chris Evans <-> Nina Torres\nDate: April 4, 2025\nChannel: Direct Message\n\nChris Evans: hey are we still on for the sports?\nNina Torres: yep works for me, see you then\n", "date": "04/04/25", "author": "Chris Evans", "recipient": "Nina Torres", "cc": "", "type": "Chat", "subject": "sports", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
78
+ {"doc_id": "DOC078", "text": "From: Sarah Johnson <sjohnson@apextelecom.com>\nTo: Karen Wilson <kwilson@apextelecom.com>\nDate: March 7, 2025\nSubject: Travel reimbursement\n\nAll,\n\nQuick update on travel reimbursement - everything is on track, no action needed from you.\n\nSarah\n", "date": "03/07/25", "author": "Sarah Johnson", "recipient": "Karen Wilson", "cc": "", "type": "Email", "subject": "Travel reimbursement", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
79
+ {"doc_id": "DOC079", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Jessica Nguyen <jessica.nguyen@northstarcomm.com>\nDate: March 3, 2025\nSubject: resume + intro\n\nJessica,\n\nGreat catching up. As promised, here's a summary of Apex's current top accounts and where I think Northstar could underbid us. Let's talk more once my offer is finalized.\n\nMichael\n", "date": "03/03/25", "author": "Michael Carter", "recipient": "Jessica Nguyen", "cc": "", "type": "Email", "subject": "resume + intro", "label": "Relevant", "reason": "Michael provides competitive intelligence about Apex's accounts to a Northstar employee while negotiating a job offer."}
80
+ {"doc_id": "DOC080", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Robert Smith <robert.smith@northstarcomm.com>\nDate: April 19, 2025\nSubject: last batch\n\nRobert,\n\nThis is the last batch I can get before my access is cut off - full account list with contract end dates. Good luck with the transition.\n\nMichael\n", "date": "04/19/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Email", "subject": "last batch", "label": "Relevant", "reason": "Explicit statement that Michael is transmitting the full confidential account list before losing system access."}
81
+ {"doc_id": "DOC081", "text": "From: Robert Smith <robert.smith@northstarcomm.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nDate: March 5, 2025\nSubject: Following up\n\nMichael,\n\nThanks for the Coastal Logistics numbers last week. This is really helpful as we put our bid together. Can you also send the renewal dates for our other target accounts?\n\nRobert\n", "date": "03/05/25", "author": "Robert Smith", "recipient": "Michael Carter", "cc": "", "type": "Email", "subject": "Following up", "label": "Relevant", "reason": "Competitor confirms receipt of Apex pricing/customer information and requests more."}
82
+ {"doc_id": "DOC082", "text": "From: Alex Kim <akim@apextelecom.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nDate: January 19, 2025\nSubject: Meridian Corp check-in\n\nHi team,\n\nHad a good call with Meridian Corp today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.\n\nAlex\n", "date": "01/19/25", "author": "Alex Kim", "recipient": "Michael Carter", "cc": "", "type": "Email", "subject": "Meridian Corp check-in", "label": "Not Relevant", "reason": "Routine, legitimate customer account update with no evidence of improper disclosure."}
83
+ {"doc_id": "DOC083", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Alex Kim <akim@apextelecom.com>\nDate: March 21, 2025\nSubject: the numbers\n\nHey,\n\nCan you send me the numbers we talked about? Want to have them ready before Friday.\n\nThanks\n", "date": "03/21/25", "author": "Michael Carter", "recipient": "Alex Kim", "cc": "", "type": "Email", "subject": "the numbers", "label": "Needs Human Review", "reason": "Vague reference to 'the numbers' without enough context to determine whether this concerns confidential pricing/customer data."}
84
+ {"doc_id": "DOC084", "text": "From: David Lee <dlee@apextelecom.com>\nTo: Chris Evans <cevans@apextelecom.com>\nDate: May 11, 2025\nSubject: Company picnic\n\nHi Chris,\n\nJust a reminder about company picnic. Let me know if you have questions.\n\nDavid\n", "date": "05/11/25", "author": "David Lee", "recipient": "Chris Evans", "cc": "", "type": "Email", "subject": "Company picnic", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
85
+ {"doc_id": "DOC085", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: David Lee <dlee@apextelecom.com>\nDate: February 26, 2025\nSubject: Conference room booking\n\nAll,\n\nQuick update on conference room booking - everything is on track, no action needed from you.\n\nMichael\n", "date": "02/26/25", "author": "Michael Carter", "recipient": "David Lee", "cc": "", "type": "Email", "subject": "Conference room booking", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
86
+ {"doc_id": "DOC086", "text": "ATTACHMENT\nFile Name: expense_policy.pdf\nDate: May 18, 2025\n\nStandard internal reference document. No customer, pricing, or confidential information related to the investigation.\n", "date": "05/18/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "expense_policy.pdf", "label": "Not Relevant", "reason": "Generic internal reference material unrelated to the allegation."}
87
+ {"doc_id": "DOC087", "text": "From: Chris Evans <cevans@apextelecom.com>\nTo: Alex Kim <akim@apextelecom.com>\nDate: May 28, 2025\nSubject: Company picnic\n\nHey,\n\nCan you send me the agenda for company picnic? Want to make sure I'm prepared.\n\nThanks,\nChris\n", "date": "05/28/25", "author": "Chris Evans", "recipient": "Alex Kim", "cc": "", "type": "Email", "subject": "Company picnic", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
88
+ {"doc_id": "DOC088", "text": "From: Robert Smith <robert.smith@northstarcomm.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nDate: June 14, 2025\nSubject: Following up\n\nMichael,\n\nThanks for the BlueWave Networks numbers last week. This is really helpful as we put our bid together. Can you also send the renewal dates for our other target accounts?\n\nRobert\n", "date": "06/14/25", "author": "Robert Smith", "recipient": "Michael Carter", "cc": "", "type": "Email", "subject": "Following up", "label": "Relevant", "reason": "Competitor confirms receipt of Apex pricing/customer information and requests more."}
89
+ {"doc_id": "DOC089", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Sarah Johnson <sjohnson@apextelecom.com>\nDate: January 22, 2025\nSubject: the numbers\n\nHey,\n\nCan you send me the numbers we talked about? Want to have them ready before Friday.\n\nThanks\n", "date": "01/22/25", "author": "Michael Carter", "recipient": "Sarah Johnson", "cc": "", "type": "Email", "subject": "the numbers", "label": "Needs Human Review", "reason": "Vague reference to 'the numbers' without enough context to determine whether this concerns confidential pricing/customer data."}
90
+ {"doc_id": "DOC090", "text": "From: David Lee <dlee@apextelecom.com>\nTo: Priya Patel <ppatel@apextelecom.com>\nDate: June 8, 2025\nSubject: Industry conference\n\nPriya,\n\nSaw that a rep from Northstar Communications was on the panel at the telecom conference last week. Nothing groundbreaking, mostly marketing talk.\n\nDavid\n", "date": "06/08/25", "author": "David Lee", "recipient": "Priya Patel", "cc": "", "type": "Email", "subject": "Industry conference", "label": "Needs Human Review", "reason": "Contains the competitor's name but appears to be innocuous industry commentary - context should be reviewed by a human."}
91
+ {"doc_id": "DOC091", "text": "From: Nina Torres <ntorres@apextelecom.com>\nTo: Alex Kim <akim@apextelecom.com>\nDate: April 5, 2025\nSubject: Sales contest results\n\nAll,\n\nQuick update on sales contest results - everything is on track, no action needed from you.\n\nNina\n", "date": "04/05/25", "author": "Nina Torres", "recipient": "Alex Kim", "cc": "", "type": "Email", "subject": "Sales contest results", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
92
+ {"doc_id": "DOC092", "text": "MEETING NOTES\nTitle: Weekly Sales Standup\nDate: June 27, 2025\nAttendees: Karen Wilson, Chris Evans, Priya Patel\n\nDiscussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.\n", "date": "06/27/25", "author": "Karen Wilson", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "Weekly Sales Standup", "label": "Not Relevant", "reason": "Standard internal meeting notes with no connection to the competitor or confidential disclosures."}
93
+ {"doc_id": "DOC093", "text": "Chat Log: David Lee <-> Michael Carter\nDate: May 28, 2025\nChannel: Direct Message\n\nAlex Kim: hey do you still have contacts at Northstar from before?\nMichael Carter: a couple, why?\n", "date": "05/28/25", "author": "David Lee", "recipient": "Michael Carter", "cc": "", "type": "Chat", "subject": "quick question", "label": "Needs Human Review", "reason": "Coworker asks Michael about competitor contacts; Michael's brief response doesn't confirm or deny improper conduct."}
94
+ {"doc_id": "DOC094", "text": "Chat Log: Alex Kim <-> Nina Torres\nDate: April 10, 2025\nChannel: Direct Message\n\nAlex Kim: hey are we still on for the random question?\nNina Torres: yep works for me, see you then\n", "date": "04/10/25", "author": "Alex Kim", "recipient": "Nina Torres", "cc": "", "type": "Chat", "subject": "random question", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
95
+ {"doc_id": "DOC095", "text": "From: Nina Torres <ntorres@apextelecom.com>\nTo: Linda Park <lpark@apextelecom.com>\nDate: April 13, 2025\nSubject: CRM login issue\n\nHi Linda,\n\nJust a reminder about crm login issue. Let me know if you have questions.\n\nNina\n", "date": "04/13/25", "author": "Nina Torres", "recipient": "Linda Park", "cc": "", "type": "Email", "subject": "CRM login issue", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
96
+ {"doc_id": "DOC096", "text": "MEETING NOTES\nTitle: Team Sync\nDate: March 4, 2025\nAttendees: Priya Patel, Karen Wilson, Sarah Johnson\n\nDiscussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.\n", "date": "03/04/25", "author": "Priya Patel", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "Team Sync", "label": "Not Relevant", "reason": "Standard internal meeting notes with no connection to the competitor or confidential disclosures."}
97
+ {"doc_id": "DOC097", "text": "From: Nina Torres <ntorres@apextelecom.com>\nTo: Linda Park <lpark@apextelecom.com>\nDate: June 24, 2025\nSubject: Sales training materials\n\nHi,\n\nSharing an update on sales training materials. Nothing urgent, just keeping everyone informed.\n\nNina\n", "date": "06/24/25", "author": "Nina Torres", "recipient": "Linda Park", "cc": "", "type": "Email", "subject": "Sales training materials", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
98
+ {"doc_id": "DOC098", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Alex Kim <akim@apextelecom.com>\nDate: March 9, 2025\nSubject: the numbers\n\nHey,\n\nCan you send me the numbers we talked about? Want to have them ready before Friday.\n\nThanks\n", "date": "03/09/25", "author": "Michael Carter", "recipient": "Alex Kim", "cc": "", "type": "Email", "subject": "the numbers", "label": "Needs Human Review", "reason": "Vague reference to 'the numbers' without enough context to determine whether this concerns confidential pricing/customer data."}
99
+ {"doc_id": "DOC099", "text": "From: Emily Brown <ebrown@apextelecom.com>\nTo: David Lee <dlee@apextelecom.com>\nDate: January 25, 2025\nSubject: Company picnic\n\nHey,\n\nCan you send me the agenda for company picnic? Want to make sure I'm prepared.\n\nThanks,\nEmily\n", "date": "01/25/25", "author": "Emily Brown", "recipient": "David Lee", "cc": "", "type": "Email", "subject": "Company picnic", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
100
+ {"doc_id": "DOC100", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Sarah Johnson <sjohnson@apextelecom.com>\nDate: April 26, 2025\nSubject: Ran into an old contact\n\nSarah,\n\nFYI I ran into an old industry contact at the conference last week - small talk, nothing more. Wanted to keep you in the loop since we know they're at a competitor now.\n\nMichael\n", "date": "04/26/25", "author": "Michael Carter", "recipient": "Sarah Johnson", "cc": "", "type": "Email", "subject": "Ran into an old contact", "label": "Needs Human Review", "reason": "Michael proactively discloses contact with someone at a competitor but characterizes it as innocuous - requires human judgment on credibility."}
101
+ {"doc_id": "DOC101", "text": "Chat Log: Priya Patel <-> David Lee\nDate: February 14, 2025\nChannel: Direct Message\n\nPriya Patel: hey are we still on for the weekend plans?\nDavid Lee: yep works for me, see you then\n", "date": "02/14/25", "author": "Priya Patel", "recipient": "David Lee", "cc": "", "type": "Chat", "subject": "weekend plans", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
102
+ {"doc_id": "DOC102", "text": "Chat Log: Alex Kim <-> Chris Evans\nDate: June 4, 2025\nChannel: Direct Message\n\nAlex Kim: Northstar had a booth at the trade show, pretty generic pitch honestly\nChris Evans: yeah nothing we haven't seen before\n", "date": "06/04/25", "author": "Alex Kim", "recipient": "Chris Evans", "cc": "", "type": "Chat", "subject": "conference", "label": "Needs Human Review", "reason": "Mentions the competitor by name in what appears to be an unrelated context - flagged rather than assumed innocuous."}
103
+ {"doc_id": "DOC103", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Robert Smith <robert.smith@northstarcomm.com>\nDate: February 28, 2025\nSubject: one more thing\n\nRobert,\n\nAlso - don't email me at my Apex address about any of this anymore. Use my Gmail from now on. Too risky.\n\nMichael\n", "date": "02/28/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Email", "subject": "one more thing", "label": "Relevant", "reason": "Evidence of concealment: Michael asks to move communications with a competitor off Apex's monitored systems."}
104
+ {"doc_id": "DOC104", "text": "Chat Log: Mark Delgado <-> Nina Torres\nDate: April 14, 2025\nChannel: Direct Message\n\nMark Delgado: hey are we still on for the random question?\nNina Torres: yep works for me, see you then\n", "date": "04/14/25", "author": "Mark Delgado", "recipient": "Nina Torres", "cc": "", "type": "Chat", "subject": "random question", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
105
+ {"doc_id": "DOC105", "text": "From: David Lee <dlee@apextelecom.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nDate: May 3, 2025\nSubject: Redstone Retail check-in\n\nHi team,\n\nHad a good call with Redstone Retail today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.\n\nDavid\n", "date": "05/03/25", "author": "David Lee", "recipient": "Michael Carter", "cc": "", "type": "Email", "subject": "Redstone Retail check-in", "label": "Not Relevant", "reason": "Routine, legitimate customer account update with no evidence of improper disclosure."}
106
+ {"doc_id": "DOC106", "text": "Chat Log: Chris Evans <-> Nina Torres\nDate: May 5, 2025\nChannel: Direct Message\n\nChris Evans: hey are we still on for the meeting time?\nNina Torres: yep works for me, see you then\n", "date": "05/05/25", "author": "Chris Evans", "recipient": "Nina Torres", "cc": "", "type": "Chat", "subject": "meeting time", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
107
+ {"doc_id": "DOC107", "text": "Chat Log: Priya Patel <-> Mark Delgado\nDate: April 16, 2025\nChannel: Direct Message\n\nPriya Patel: hey are we still on for the weekend plans?\nMark Delgado: yep works for me, see you then\n", "date": "04/16/25", "author": "Priya Patel", "recipient": "Mark Delgado", "cc": "", "type": "Chat", "subject": "weekend plans", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
108
+ {"doc_id": "DOC108", "text": "ATTACHMENT\nFile Name: Q1_sales_deck.pptx\nDate: March 12, 2025\n\nStandard internal reference document. No customer, pricing, or confidential information related to the investigation.\n", "date": "03/12/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "Q1_sales_deck.pptx", "label": "Not Relevant", "reason": "Generic internal reference material unrelated to the allegation."}
109
+ {"doc_id": "DOC109", "text": "From: Sarah Johnson <sjohnson@apextelecom.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nCc: Emily Brown <ebrown@apextelecom.com>\nDate: June 28, 2025\nSubject: Fwd: Fwd: Fwd: Team update\n\n---------- Forwarded message ----------\nFrom: David Lee\nSubject: Team update\n\nHey all, quick update on the team...\n\n---------- Forwarded message ----------\nFrom: Michael Carter\n\nby the way I already sent Robert the account list, don't mention it in the group thread\n\n---------- Forwarded message ----------\nFrom: Sarah Johnson\n\nForwarding along, please review.\n", "date": "06/28/25", "author": "Sarah Johnson", "recipient": "Michael Carter", "cc": "Emily Brown", "type": "Email", "subject": "Fwd: Fwd: Fwd: Team update", "label": "Needs Human Review", "reason": "Contains a buried admission of sending the account list to Robert within a long forwarded chain - easy for an automated reviewer to miss."}
110
+ {"doc_id": "DOC110", "text": "MEETING NOTES\nTitle: Q2 Planning\nDate: January 8, 2025\nAttendees: Priya Patel, Karen Wilson, David Lee\n\nDiscussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.\n", "date": "01/08/25", "author": "Priya Patel", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "Q2 Planning", "label": "Not Relevant", "reason": "Standard internal meeting notes with no connection to the competitor or confidential disclosures."}
111
+ {"doc_id": "DOC111", "text": "From: Nina Torres <ntorres@apextelecom.com>\nTo: Mark Delgado <mdelgado@apextelecom.com>\nDate: May 11, 2025\nSubject: Quarterly newsletter\n\nHi,\n\nSharing an update on quarterly newsletter. Nothing urgent, just keeping everyone informed.\n\nNina\n", "date": "05/11/25", "author": "Nina Torres", "recipient": "Mark Delgado", "cc": "", "type": "Email", "subject": "Quarterly newsletter", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
112
+ {"doc_id": "DOC112", "text": "From: Tom Reyes <treyes@apextelecom.com>\nTo: Linda Park <lpark@apextelecom.com>\nDate: March 25, 2025\nSubject: Public pricing page update\n\nLinda,\n\nMarketing wants to refresh the publicly posted pricing page on our website next month. Nothing changes internally, just a design refresh.\n\nTom\n", "date": "03/25/25", "author": "Tom Reyes", "recipient": "Linda Park", "cc": "", "type": "Email", "subject": "Public pricing page update", "label": "Needs Human Review", "reason": "References 'pricing' but concerns public, non-confidential information - requires review to confirm it is out of scope."}
113
+ {"doc_id": "DOC113", "text": "From: Priya Patel <ppatel@apextelecom.com>\nTo: David Lee <dlee@apextelecom.com>\nDate: June 10, 2025\nSubject: Company picnic\n\nHi David,\n\nJust a reminder about company picnic. Let me know if you have questions.\n\nPriya\n", "date": "06/10/25", "author": "Priya Patel", "recipient": "David Lee", "cc": "", "type": "Email", "subject": "Company picnic", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
114
+ {"doc_id": "DOC114", "text": "From: Priya Patel <ppatel@apextelecom.com>\nTo: Tom Reyes <treyes@apextelecom.com>\nDate: January 1, 2025\nSubject: Sunrise Health Systems check-in\n\nHi team,\n\nHad a good call with Sunrise Health Systems today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.\n\nPriya\n", "date": "01/01/25", "author": "Priya Patel", "recipient": "Tom Reyes", "cc": "", "type": "Email", "subject": "Sunrise Health Systems check-in", "label": "Not Relevant", "reason": "Routine, legitimate customer account update with no evidence of improper disclosure."}
115
+ {"doc_id": "DOC115", "text": "From: Chris Evans <cevans@apextelecom.com>\nTo: Karen Wilson <kwilson@apextelecom.com>\nDate: April 18, 2025\nSubject: Quarterly newsletter\n\nHi,\n\nSharing an update on quarterly newsletter. Nothing urgent, just keeping everyone informed.\n\nChris\n", "date": "04/18/25", "author": "Chris Evans", "recipient": "Karen Wilson", "cc": "", "type": "Email", "subject": "Quarterly newsletter", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
116
+ {"doc_id": "DOC116", "text": "Chat Log: Nina Torres <-> David Lee\nDate: February 7, 2025\nChannel: Direct Message\n\nNina Torres: hey are we still on for the weekend plans?\nDavid Lee: yep works for me, see you then\n", "date": "02/07/25", "author": "Nina Torres", "recipient": "David Lee", "cc": "", "type": "Chat", "subject": "weekend plans", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
117
+ {"doc_id": "DOC117", "text": "MEETING NOTES\nTitle: Q2 Planning\nDate: February 24, 2025\nAttendees: Michael Carter, Tom Reyes, David Lee\n\nDiscussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.\n", "date": "02/24/25", "author": "Michael Carter", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "Q2 Planning", "label": "Not Relevant", "reason": "Standard internal meeting notes with no connection to the competitor or confidential disclosures."}
118
+ {"doc_id": "DOC118", "text": "Chat Log: Mark Delgado <-> Chris Evans\nDate: February 7, 2025\nChannel: Direct Message\n\nMark Delgado: hey are we still on for the lunch?\nChris Evans: yep works for me, see you then\n", "date": "02/07/25", "author": "Mark Delgado", "recipient": "Chris Evans", "cc": "", "type": "Chat", "subject": "lunch", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
119
+ {"doc_id": "DOC119", "text": "Chat Log: David Lee <-> Michael Carter\nDate: April 21, 2025\nChannel: Direct Message\n\nAlex Kim: hey do you still have contacts at Northstar from before?\nMichael Carter: a couple, why?\n", "date": "04/21/25", "author": "David Lee", "recipient": "Michael Carter", "cc": "", "type": "Chat", "subject": "quick question", "label": "Needs Human Review", "reason": "Coworker asks Michael about competitor contacts; Michael's brief response doesn't confirm or deny improper conduct."}
120
+ {"doc_id": "DOC120", "text": "ATTACHMENT\nFile Name: Sunrise Health Systems_pricing_sheet_CONFIDENTIAL.xlsx\nDate: May 7, 2025\n\nAPEX TELECOMMUNICATIONS - INTERNAL USE ONLY\n\nCustomer: Sunrise Health Systems\nNegotiated Rate: $396/unit\nContract Term: 24 months\nInternal Cost Basis: $53/unit\nSales Rep: Michael Carter\n\nDO NOT DISTRIBUTE OUTSIDE APEX.\n", "date": "05/07/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "Sunrise Health Systems_pricing_sheet_CONFIDENTIAL.xlsx", "label": "Relevant", "reason": "Confidential internal Apex pricing document found in the population; corresponds to an email Michael sent externally."}
121
+ {"doc_id": "DOC121", "text": "Chat Log: Nina Torres <-> Alex Kim\nDate: January 13, 2025\nChannel: Direct Message\n\nNina Torres: hey are we still on for the lunch?\nAlex Kim: yep works for me, see you then\n", "date": "01/13/25", "author": "Nina Torres", "recipient": "Alex Kim", "cc": "", "type": "Chat", "subject": "lunch", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
122
+ {"doc_id": "DOC122", "text": "ATTACHMENT\nFile Name: Coastal Logistics_pricing_sheet_CONFIDENTIAL.xlsx\nDate: January 24, 2025\n\nAPEX TELECOMMUNICATIONS - INTERNAL USE ONLY\n\nCustomer: Coastal Logistics\nNegotiated Rate: $389/unit\nContract Term: 24 months\nInternal Cost Basis: $46/unit\nSales Rep: Michael Carter\n\nDO NOT DISTRIBUTE OUTSIDE APEX.\n", "date": "01/24/25", "author": "", "recipient": "", "cc": "", "type": "Attachment", "subject": "Coastal Logistics_pricing_sheet_CONFIDENTIAL.xlsx", "label": "Relevant", "reason": "Confidential internal Apex pricing document found in the population; corresponds to an email Michael sent externally."}
123
+ {"doc_id": "DOC123", "text": "Chat Log: Michael Carter <-> Alex Kim\nDate: January 27, 2025\nChannel: Direct Message\n\nAlex Kim: how was the industry mixer last night?\nMichael Carter: good, ran into a bunch of people from other companies, good to reconnect\n", "date": "01/27/25", "author": "Michael Carter", "recipient": "Alex Kim", "cc": "", "type": "Chat", "subject": "networking event", "label": "Needs Human Review", "reason": "Vague reference to contact with unnamed people from other companies at an industry event."}
124
+ {"doc_id": "DOC124", "text": "From: Robert Smith <robert.smith@northstarcomm.com>\nTo: Jessica Nguyen <jessica.nguyen@northstarcomm.com>\nDate: April 20, 2025\nSubject: Re: Apex intel\n\nJessica,\n\nMichael came through again - got us Coastal Logistics's renewal date and current rate. This puts us in a great spot to underbid when it comes up.\n\nRobert\n", "date": "04/20/25", "author": "Robert Smith", "recipient": "Jessica Nguyen", "cc": "", "type": "Email", "subject": "Re: Apex intel", "label": "Relevant", "reason": "Internal Northstar email confirming receipt and use of confidential Apex competitive information obtained from Michael."}
125
+ {"doc_id": "DOC125", "text": "From: Karen Wilson <kwilson@apextelecom.com>\nTo: David Lee <dlee@apextelecom.com>\nDate: May 18, 2025\nSubject: Holiday schedule\n\nAll,\n\nQuick update on holiday schedule - everything is on track, no action needed from you.\n\nKaren\n", "date": "05/18/25", "author": "Karen Wilson", "recipient": "David Lee", "cc": "", "type": "Email", "subject": "Holiday schedule", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
126
+ {"doc_id": "DOC126", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Nina Torres <ntorres@apextelecom.com>\nDate: January 22, 2025\nSubject: BlueWave Networks check-in\n\nHi team,\n\nHad a good call with BlueWave Networks today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.\n\nMichael\n", "date": "01/22/25", "author": "Michael Carter", "recipient": "Nina Torres", "cc": "", "type": "Email", "subject": "BlueWave Networks check-in", "label": "Not Relevant", "reason": "Routine, legitimate customer account update with no evidence of improper disclosure."}
127
+ {"doc_id": "DOC127", "text": "From: Robert Smith <robert.smith@northstarcomm.com>\nTo: Michael Carter <mcarter@apextelecom.com>\nDate: May 7, 2025\nSubject: Following up\n\nMichael,\n\nThanks for the Meridian Corp numbers last week. This is really helpful as we put our bid together. Can you also send the renewal dates for our other target accounts?\n\nRobert\n", "date": "05/07/25", "author": "Robert Smith", "recipient": "Michael Carter", "cc": "", "type": "Email", "subject": "Following up", "label": "Relevant", "reason": "Competitor confirms receipt of Apex pricing/customer information and requests more."}
128
+ {"doc_id": "DOC128", "text": "MEETING NOTES\nTitle: Exit Interview - Michael Carter\nDate: May 4, 2025\nAttendees: Emily Brown, Michael Carter\n\nDuring the exit interview, Michael was asked about client relationships going forward. He stated he had 'already made introductions' between some Apex accounts and his new employer, Northstar Communications, and did not seem to view this as a conflict.\n", "date": "05/04/25", "author": "Emily Brown", "recipient": "", "cc": "", "type": "Meeting Notes", "subject": "Exit Interview - Michael Carter", "label": "Relevant", "reason": "Direct admission during exit interview of introducing Apex accounts to the competitor."}
129
+ {"doc_id": "DOC129", "text": "From: Alex Kim <akim@apextelecom.com>\nTo: Sarah Johnson <sjohnson@apextelecom.com>\nDate: February 22, 2025\nSubject: Software license renewal\n\nHi Sarah,\n\nJust a reminder about software license renewal. Let me know if you have questions.\n\nAlex\n", "date": "02/22/25", "author": "Alex Kim", "recipient": "Sarah Johnson", "cc": "", "type": "Email", "subject": "Software license renewal", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
130
+ {"doc_id": "DOC130", "text": "Chat Log: Nina Torres <-> Mark Delgado\nDate: January 4, 2025\nChannel: Direct Message\n\nNina Torres: hey are we still on for the meeting time?\nMark Delgado: yep works for me, see you then\n", "date": "01/04/25", "author": "Nina Torres", "recipient": "Mark Delgado", "cc": "", "type": "Chat", "subject": "meeting time", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
131
+ {"doc_id": "DOC131", "text": "Chat Log: Michael Carter <-> David Lee\nDate: February 7, 2025\nChannel: Direct Message\n\nMichael Carter: honestly kind of over it here, thinking about other options\nAlex Kim: you should look around, no shame in that\n", "date": "02/07/25", "author": "Michael Carter", "recipient": "David Lee", "cc": "", "type": "Chat", "subject": "job search", "label": "Needs Human Review", "reason": "Suggests Michael may have been considering leaving Apex, which is contextually relevant to motive but not direct evidence of disclosure."}
132
+ {"doc_id": "DOC132", "text": "From: Nina Torres <ntorres@apextelecom.com>\nTo: Priya Patel <ppatel@apextelecom.com>\nDate: March 27, 2025\nSubject: Holiday schedule\n\nAll,\n\nQuick update on holiday schedule - everything is on track, no action needed from you.\n\nNina\n", "date": "03/27/25", "author": "Nina Torres", "recipient": "Priya Patel", "cc": "", "type": "Email", "subject": "Holiday schedule", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
133
+ {"doc_id": "DOC133", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Robert Smith <robert.smith@northstarcomm.com>\nDate: February 8, 2025\nSubject: Sunrise Health Systems pricing\n\nRobert,\n\nAttached is the current pricing sheet we discussed for Sunrise Health Systems. Please don't forward this outside Northstar - I'd rather Apex not know we talked.\n\nMichael\n", "date": "02/08/25", "author": "Michael Carter", "recipient": "Robert Smith", "cc": "", "type": "Email", "subject": "Sunrise Health Systems pricing", "label": "Relevant", "reason": "Direct evidence Michael sent Apex pricing information to a Northstar employee and asked for secrecy."}
134
+ {"doc_id": "DOC134", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: Mark Delgado <mdelgado@apextelecom.com>\nDate: May 25, 2025\nSubject: Expense report\n\nAll,\n\nQuick update on expense report - everything is on track, no action needed from you.\n\nMichael\n", "date": "05/25/25", "author": "Michael Carter", "recipient": "Mark Delgado", "cc": "", "type": "Email", "subject": "Expense report", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
135
+ {"doc_id": "DOC135", "text": "Chat Log: Alex Kim <-> Nina Torres\nDate: January 2, 2025\nChannel: Direct Message\n\nAlex Kim: hey are we still on for the sports?\nNina Torres: yep works for me, see you then\n", "date": "01/02/25", "author": "Alex Kim", "recipient": "Nina Torres", "cc": "", "type": "Chat", "subject": "sports", "label": "Not Relevant", "reason": "Casual, non-substantive workplace chat unrelated to the investigation."}
136
+ {"doc_id": "DOC136", "text": "Chat Log: Michael Carter <-> David Lee\nDate: March 26, 2025\nChannel: Direct Message\n\nDavid Lee: didn't you used to work with a Robert at your old job?\nMichael Carter: yeah, small world, ran into him at a conference a while back\n", "date": "03/26/25", "author": "Michael Carter", "recipient": "David Lee", "cc": "", "type": "Chat", "subject": "Robert", "label": "Needs Human Review", "reason": "References a person named Robert without clear evidence of which Robert or what was discussed - insufficient context to classify confidently."}
137
+ {"doc_id": "DOC137", "text": "From: Karen Wilson <kwilson@apextelecom.com>\nTo: Emily Brown <ebrown@apextelecom.com>\nDate: April 26, 2025\nSubject: System maintenance window\n\nHi,\n\nSharing an update on system maintenance window. Nothing urgent, just keeping everyone informed.\n\nKaren\n", "date": "04/26/25", "author": "Karen Wilson", "recipient": "Emily Brown", "cc": "", "type": "Email", "subject": "System maintenance window", "label": "Not Relevant", "reason": "Routine internal administrative communication unrelated to the investigation."}
138
+ {"doc_id": "DOC138", "text": "From: Michael Carter <mcarter@apextelecom.com>\nTo: David Lee <dlee@apextelecom.com>\nDate: May 24, 2025\nSubject: Sales meeting agenda\n\nHi,\n\nCan you send me the agenda for tomorrow's sales meeting? Want to make sure I bring the right numbers.\n\nMichael\n", "date": "05/24/25", "author": "Michael Carter", "recipient": "David Lee", "cc": "", "type": "Email", "subject": "Sales meeting agenda", "label": "Needs Human Review", "reason": "Authored by the subject of the investigation, but content is routine - relevance should not be assumed from authorship alone."}
document_metadata.csv ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Doc ID,Date,Author,Recipient,Cc,Type,Subject
2
+ DOC001,03/08/25,Alex Kim,Michael Carter,,Email,Expense report
3
+ DOC002,06/19/25,Michael Carter,Alex Kim,,Email,Meridian Corp check-in
4
+ DOC003,06/11/25,Linda Park,Sarah Johnson,,Email,System maintenance window
5
+ DOC004,03/01/25,Priya Patel,Mark Delgado,,Chat,lunch
6
+ DOC005,04/12/25,Karen Wilson,Nina Torres,,Email,Office supply order
7
+ DOC006,02/25/25,Michael Carter,Robert Smith,,Chat,customer list
8
+ DOC007,06/07/25,Alex Kim,Priya Patel,,Email,Sales training materials
9
+ DOC008,04/09/25,Michael Carter,Karen Wilson,,Email,Team lunch Friday
10
+ DOC009,05/01/25,,,,Attachment,benefits_summary.pdf
11
+ DOC010,06/23/25,Tom Reyes,,,Meeting Notes,Sales Pipeline Review
12
+ DOC011,03/07/25,,,,Attachment,Q1_sales_deck.pptx
13
+ DOC012,05/14/25,Michael Carter,Robert Smith,,Email,Falcon Industries pricing
14
+ DOC013,04/03/25,,,,Attachment,Redstone Retail_pricing_sheet_CONFIDENTIAL.xlsx
15
+ DOC014,05/07/25,Sarah Johnson,Karen Wilson,,Email,Question about a former contact
16
+ DOC015,06/27/25,Karen Wilson,Emily Brown,,Email,Litigation hold - Carter
17
+ DOC016,04/28/25,Michael Carter,David Lee,,Chat,job search
18
+ DOC017,02/17/25,Michael Carter,Robert Smith,,Email,Titan Manufacturing pricing
19
+ DOC018,03/20/25,Sarah Johnson,,,Meeting Notes,Q2 Planning
20
+ DOC019,03/06/25,Nina Torres,Priya Patel,,Email,Northgate Systems demo
21
+ DOC020,01/13/25,Michael Carter,Robert Smith,,Chat,customer list
22
+ DOC021,06/04/25,Michael Carter,Robert Smith,,Email,BlueWave Networks pricing
23
+ DOC022,05/28/25,Alex Kim,Chris Evans,,Email,Weekly status update
24
+ DOC023,05/24/25,David Lee,Michael Carter,,Email,Sunrise Health Systems check-in
25
+ DOC024,05/02/25,,,,Attachment,team_org_chart.pdf
26
+ DOC025,02/25/25,,,,Attachment,Falcon Industries_pricing_sheet_CONFIDENTIAL.xlsx
27
+ DOC026,03/04/25,Michael Carter,Robert Smith,,Chat,customer list
28
+ DOC027,05/08/25,David Lee,Mark Delgado,,Chat,meeting time
29
+ DOC028,06/09/25,David Lee,Priya Patel,,Email,Q1 sales meeting
30
+ DOC029,02/28/25,Priya Patel,Chris Evans,,Chat,weekend plans
31
+ DOC030,01/03/25,Michael Carter,Robert Smith,,Email,Meridian Corp pricing
32
+ DOC031,02/14/25,Michael Carter,Sarah Johnson,,Email,Sales meeting agenda
33
+ DOC032,05/07/25,Michael Carter,David Lee,,Email,Redstone Retail check-in
34
+ DOC033,04/05/25,,,,Attachment,team_org_chart.pdf
35
+ DOC034,06/06/25,Karen Wilson,Mark Delgado,,Email,PTO request
36
+ DOC035,01/13/25,Michael Carter,Robert Smith,,Chat,pricing structure
37
+ DOC036,06/23/25,Chris Evans,Linda Park,,Email,IT ticket - laptop issue
38
+ DOC037,01/17/25,Michael Carter,Alex Kim,,Email,System maintenance window
39
+ DOC038,02/12/25,Nina Torres,Priya Patel,,Email,CRM login issue
40
+ DOC039,06/23/25,Alex Kim,Emily Brown,,Email,Coastal Logistics check-in
41
+ DOC040,05/23/25,Tom Reyes,,,Meeting Notes,Client Renewal Review
42
+ DOC041,05/10/25,Sarah Johnson,Tom Reyes,,Email,Facilities update
43
+ DOC042,05/28/25,Michael Carter,David Lee,,Chat,pricing page
44
+ DOC043,01/12/25,Michael Carter,Robert Smith,,Chat,customer list
45
+ DOC044,03/14/25,Karen Wilson,Mark Delgado,,Email,Parking garage closure
46
+ DOC045,06/03/25,Mark Delgado,David Lee,,Email,Client satisfaction survey results
47
+ DOC046,03/02/25,Karen Wilson,,,Meeting Notes,Client Renewal Review
48
+ DOC047,02/13/25,Priya Patel,Nina Torres,,Chat,lunch
49
+ DOC048,02/09/25,Michael Carter,Robert Smith,,Email,See attached
50
+ DOC049,04/08/25,Mark Delgado,David Lee,,Chat,sports
51
+ DOC050,04/05/25,David Lee,Tom Reyes,,Email,Coastal Logistics check-in
52
+ DOC051,03/15/25,Sarah Johnson,,,Meeting Notes,1:1 - Michael / Sarah
53
+ DOC052,01/24/25,Michael Carter,Robert Smith,,Email,Falcon Industries pricing
54
+ DOC053,03/24/25,Robert Smith,Jessica Nguyen,,Email,Re: Apex intel
55
+ DOC054,02/22/25,Tom Reyes,David Lee,,Email,Training session sign-up
56
+ DOC055,05/23/25,,,,Attachment,benefits_summary.pdf
57
+ DOC056,06/21/25,Priya Patel,Chris Evans,,Chat,weekend plans
58
+ DOC057,01/23/25,,,,Attachment,Q1_sales_deck.pptx
59
+ DOC058,06/26/25,,,,Attachment,customer_master_list_Q1.xlsx
60
+ DOC059,03/08/25,Mark Delgado,Emily Brown,,Email,Unusual login activity
61
+ DOC060,01/24/25,Michael Carter,Karen Wilson,,Email,Travel reimbursement
62
+ DOC061,01/02/25,David Lee,Michael Carter,,Chat,quick question
63
+ DOC062,01/25/25,Mark Delgado,David Lee,,Chat,lunch
64
+ DOC063,02/28/25,Michael Carter,Sarah Johnson,,Email,Sales meeting agenda
65
+ DOC064,01/04/25,David Lee,Alex Kim,,Email,the numbers
66
+ DOC065,01/04/25,Robert Smith,Jessica Nguyen,,Email,Re: Apex intel
67
+ DOC066,04/09/25,Priya Patel,Emily Brown,,Email,Weekly status update
68
+ DOC067,02/15/25,Robert Smith,Michael Carter,,Email,Following up
69
+ DOC068,05/08/25,Priya Patel,Sarah Johnson,,Email,Titan Manufacturing check-in
70
+ DOC069,05/05/25,Linda Park,Karen Wilson,,Email,System maintenance window
71
+ DOC070,02/24/25,Michael Carter,Sarah Johnson,,Email,Sales meeting agenda
72
+ DOC071,05/16/25,Emily Brown,,,Meeting Notes,Q2 Planning
73
+ DOC072,02/03/25,Alex Kim,Mark Delgado,,Chat,lunch
74
+ DOC073,05/08/25,Alex Kim,Chris Evans,,Chat,lunch
75
+ DOC074,01/25/25,Robert Smith,Michael Carter,,Email,Following up
76
+ DOC075,02/22/25,David Lee,Michael Carter,,Email,Customer list access
77
+ DOC076,03/27/25,Michael Carter,Alex Kim,,Chat,job search
78
+ DOC077,04/04/25,Chris Evans,Nina Torres,,Chat,sports
79
+ DOC078,03/07/25,Sarah Johnson,Karen Wilson,,Email,Travel reimbursement
80
+ DOC079,03/03/25,Michael Carter,Jessica Nguyen,,Email,resume + intro
81
+ DOC080,04/19/25,Michael Carter,Robert Smith,,Email,last batch
82
+ DOC081,03/05/25,Robert Smith,Michael Carter,,Email,Following up
83
+ DOC082,01/19/25,Alex Kim,Michael Carter,,Email,Meridian Corp check-in
84
+ DOC083,03/21/25,Michael Carter,Alex Kim,,Email,the numbers
85
+ DOC084,05/11/25,David Lee,Chris Evans,,Email,Company picnic
86
+ DOC085,02/26/25,Michael Carter,David Lee,,Email,Conference room booking
87
+ DOC086,05/18/25,,,,Attachment,expense_policy.pdf
88
+ DOC087,05/28/25,Chris Evans,Alex Kim,,Email,Company picnic
89
+ DOC088,06/14/25,Robert Smith,Michael Carter,,Email,Following up
90
+ DOC089,01/22/25,Michael Carter,Sarah Johnson,,Email,the numbers
91
+ DOC090,06/08/25,David Lee,Priya Patel,,Email,Industry conference
92
+ DOC091,04/05/25,Nina Torres,Alex Kim,,Email,Sales contest results
93
+ DOC092,06/27/25,Karen Wilson,,,Meeting Notes,Weekly Sales Standup
94
+ DOC093,05/28/25,David Lee,Michael Carter,,Chat,quick question
95
+ DOC094,04/10/25,Alex Kim,Nina Torres,,Chat,random question
96
+ DOC095,04/13/25,Nina Torres,Linda Park,,Email,CRM login issue
97
+ DOC096,03/04/25,Priya Patel,,,Meeting Notes,Team Sync
98
+ DOC097,06/24/25,Nina Torres,Linda Park,,Email,Sales training materials
99
+ DOC098,03/09/25,Michael Carter,Alex Kim,,Email,the numbers
100
+ DOC099,01/25/25,Emily Brown,David Lee,,Email,Company picnic
101
+ DOC100,04/26/25,Michael Carter,Sarah Johnson,,Email,Ran into an old contact
102
+ DOC101,02/14/25,Priya Patel,David Lee,,Chat,weekend plans
103
+ DOC102,06/04/25,Alex Kim,Chris Evans,,Chat,conference
104
+ DOC103,02/28/25,Michael Carter,Robert Smith,,Email,one more thing
105
+ DOC104,04/14/25,Mark Delgado,Nina Torres,,Chat,random question
106
+ DOC105,05/03/25,David Lee,Michael Carter,,Email,Redstone Retail check-in
107
+ DOC106,05/05/25,Chris Evans,Nina Torres,,Chat,meeting time
108
+ DOC107,04/16/25,Priya Patel,Mark Delgado,,Chat,weekend plans
109
+ DOC108,03/12/25,,,,Attachment,Q1_sales_deck.pptx
110
+ DOC109,06/28/25,Sarah Johnson,Michael Carter,Emily Brown,Email,Fwd: Fwd: Fwd: Team update
111
+ DOC110,01/08/25,Priya Patel,,,Meeting Notes,Q2 Planning
112
+ DOC111,05/11/25,Nina Torres,Mark Delgado,,Email,Quarterly newsletter
113
+ DOC112,03/25/25,Tom Reyes,Linda Park,,Email,Public pricing page update
114
+ DOC113,06/10/25,Priya Patel,David Lee,,Email,Company picnic
115
+ DOC114,01/01/25,Priya Patel,Tom Reyes,,Email,Sunrise Health Systems check-in
116
+ DOC115,04/18/25,Chris Evans,Karen Wilson,,Email,Quarterly newsletter
117
+ DOC116,02/07/25,Nina Torres,David Lee,,Chat,weekend plans
118
+ DOC117,02/24/25,Michael Carter,,,Meeting Notes,Q2 Planning
119
+ DOC118,02/07/25,Mark Delgado,Chris Evans,,Chat,lunch
120
+ DOC119,04/21/25,David Lee,Michael Carter,,Chat,quick question
121
+ DOC120,05/07/25,,,,Attachment,Sunrise Health Systems_pricing_sheet_CONFIDENTIAL.xlsx
122
+ DOC121,01/13/25,Nina Torres,Alex Kim,,Chat,lunch
123
+ DOC122,01/24/25,,,,Attachment,Coastal Logistics_pricing_sheet_CONFIDENTIAL.xlsx
124
+ DOC123,01/27/25,Michael Carter,Alex Kim,,Chat,networking event
125
+ DOC124,04/20/25,Robert Smith,Jessica Nguyen,,Email,Re: Apex intel
126
+ DOC125,05/18/25,Karen Wilson,David Lee,,Email,Holiday schedule
127
+ DOC126,01/22/25,Michael Carter,Nina Torres,,Email,BlueWave Networks check-in
128
+ DOC127,05/07/25,Robert Smith,Michael Carter,,Email,Following up
129
+ DOC128,05/04/25,Emily Brown,,,Meeting Notes,Exit Interview - Michael Carter
130
+ DOC129,02/22/25,Alex Kim,Sarah Johnson,,Email,Software license renewal
131
+ DOC130,01/04/25,Nina Torres,Mark Delgado,,Chat,meeting time
132
+ DOC131,02/07/25,Michael Carter,David Lee,,Chat,job search
133
+ DOC132,03/27/25,Nina Torres,Priya Patel,,Email,Holiday schedule
134
+ DOC133,02/08/25,Michael Carter,Robert Smith,,Email,Sunrise Health Systems pricing
135
+ DOC134,05/25/25,Michael Carter,Mark Delgado,,Email,Expense report
136
+ DOC135,01/02/25,Alex Kim,Nina Torres,,Chat,sports
137
+ DOC136,03/26/25,Michael Carter,David Lee,,Chat,Robert
138
+ DOC137,04/26/25,Karen Wilson,Emily Brown,,Email,System maintenance window
139
+ DOC138,05/24/25,Michael Carter,David Lee,,Email,Sales meeting agenda
documents/DOC001.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Alex Kim <akim@apextelecom.com>
2
+ To: Michael Carter <mcarter@apextelecom.com>
3
+ Date: March 8, 2025
4
+ Subject: Expense report
5
+
6
+ Hey,
7
+
8
+ Can you send me the agenda for expense report? Want to make sure I'm prepared.
9
+
10
+ Thanks,
11
+ Alex
documents/DOC002.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Michael Carter <mcarter@apextelecom.com>
2
+ To: Alex Kim <akim@apextelecom.com>
3
+ Date: June 19, 2025
4
+ Subject: Meridian Corp check-in
5
+
6
+ Hi team,
7
+
8
+ Had a good call with Meridian Corp today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.
9
+
10
+ Michael
documents/DOC003.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Linda Park <lpark@apextelecom.com>
2
+ To: Sarah Johnson <sjohnson@apextelecom.com>
3
+ Date: June 11, 2025
4
+ Subject: System maintenance window
5
+
6
+ Hi,
7
+
8
+ Sharing an update on system maintenance window. Nothing urgent, just keeping everyone informed.
9
+
10
+ Linda
documents/DOC004.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ Chat Log: Priya Patel <-> Mark Delgado
2
+ Date: March 1, 2025
3
+ Channel: Direct Message
4
+
5
+ Priya Patel: hey are we still on for the lunch?
6
+ Mark Delgado: yep works for me, see you then
documents/DOC005.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Karen Wilson <kwilson@apextelecom.com>
2
+ To: Nina Torres <ntorres@apextelecom.com>
3
+ Date: April 12, 2025
4
+ Subject: Office supply order
5
+
6
+ All,
7
+
8
+ Quick update on office supply order - everything is on track, no action needed from you.
9
+
10
+ Karen
documents/DOC006.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Chat Log: Michael Carter <-> Robert Smith
2
+ Date: February 25, 2025
3
+ Channel: Direct Message
4
+
5
+ Robert Smith: hey did you get a chance to pull that customer list?
6
+ Michael Carter: yeah, sending it from my personal email tonight so it doesn't show up on the apex server
7
+ Robert Smith: perfect, appreciate it
documents/DOC007.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Alex Kim <akim@apextelecom.com>
2
+ To: Priya Patel <ppatel@apextelecom.com>
3
+ Date: June 7, 2025
4
+ Subject: Sales training materials
5
+
6
+ Hi,
7
+
8
+ Sharing an update on sales training materials. Nothing urgent, just keeping everyone informed.
9
+
10
+ Alex
documents/DOC008.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Michael Carter <mcarter@apextelecom.com>
2
+ To: Karen Wilson <kwilson@apextelecom.com>
3
+ Date: April 9, 2025
4
+ Subject: Team lunch Friday
5
+
6
+ Hey,
7
+
8
+ Can you send me the agenda for team lunch friday? Want to make sure I'm prepared.
9
+
10
+ Thanks,
11
+ Michael
documents/DOC009.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ ATTACHMENT
2
+ File Name: benefits_summary.pdf
3
+ Date: May 1, 2025
4
+
5
+ Standard internal reference document. No customer, pricing, or confidential information related to the investigation.
documents/DOC010.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ MEETING NOTES
2
+ Title: Sales Pipeline Review
3
+ Date: June 23, 2025
4
+ Attendees: Tom Reyes, Sarah Johnson, Michael Carter
5
+
6
+ Michael's numbers for the quarter were notably lower than peers. Tom asked whether there were any deals at risk; Michael mentioned 'a few things in motion' without elaborating.
documents/DOC011.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ ATTACHMENT
2
+ File Name: Q1_sales_deck.pptx
3
+ Date: March 7, 2025
4
+
5
+ Standard internal reference document. No customer, pricing, or confidential information related to the investigation.
documents/DOC012.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Michael Carter <mcarter@apextelecom.com>
2
+ To: Robert Smith <robert.smith@northstarcomm.com>
3
+ Date: May 14, 2025
4
+ Subject: Falcon Industries pricing
5
+
6
+ Robert,
7
+
8
+ Attached is the current pricing sheet we discussed for Falcon Industries. Please don't forward this outside Northstar - I'd rather Apex not know we talked.
9
+
10
+ Michael
documents/DOC013.txt ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ATTACHMENT
2
+ File Name: Redstone Retail_pricing_sheet_CONFIDENTIAL.xlsx
3
+ Date: April 3, 2025
4
+
5
+ APEX TELECOMMUNICATIONS - INTERNAL USE ONLY
6
+
7
+ Customer: Redstone Retail
8
+ Negotiated Rate: $354/unit
9
+ Contract Term: 24 months
10
+ Internal Cost Basis: $37/unit
11
+ Sales Rep: Michael Carter
12
+
13
+ DO NOT DISTRIBUTE OUTSIDE APEX.
documents/DOC014.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Sarah Johnson <sjohnson@apextelecom.com>
2
+ To: Karen Wilson <kwilson@apextelecom.com>
3
+ Date: May 7, 2025
4
+ Subject: Question about a former contact
5
+
6
+ Karen,
7
+
8
+ Michael mentioned in passing that he 'still talks to people' at Northstar from a prior role. Wanted to flag in case it's relevant, though it may be nothing.
9
+
10
+ Sarah
documents/DOC015.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Karen Wilson <kwilson@apextelecom.com>
2
+ To: Emily Brown <ebrown@apextelecom.com>
3
+ Date: June 27, 2025
4
+ Subject: Litigation hold - Carter
5
+
6
+ Emily,
7
+
8
+ Please issue a litigation hold notice covering Michael Carter's email, chat, and file activity effective immediately. We have reason to believe confidential customer and pricing information may have been shared with a competitor.
9
+
10
+ Karen
documents/DOC016.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ Chat Log: Michael Carter <-> David Lee
2
+ Date: April 28, 2025
3
+ Channel: Direct Message
4
+
5
+ Michael Carter: honestly kind of over it here, thinking about other options
6
+ David Lee: you should look around, no shame in that
documents/DOC017.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Michael Carter <mcarter@apextelecom.com>
2
+ To: Robert Smith <robert.smith@northstarcomm.com>
3
+ Date: February 17, 2025
4
+ Subject: Titan Manufacturing pricing
5
+
6
+ Robert,
7
+
8
+ Attached is the current pricing sheet we discussed for Titan Manufacturing. Please don't forward this outside Northstar - I'd rather Apex not know we talked.
9
+
10
+ Michael
documents/DOC018.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ MEETING NOTES
2
+ Title: Q2 Planning
3
+ Date: March 20, 2025
4
+ Attendees: Sarah Johnson, Priya Patel, David Lee
5
+
6
+ Discussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.
documents/DOC019.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Nina Torres <ntorres@apextelecom.com>
2
+ To: Priya Patel <ppatel@apextelecom.com>
3
+ Date: March 6, 2025
4
+ Subject: Northgate Systems demo
5
+
6
+ Priya,
7
+
8
+ Northgate Systems (the software vendor, not a telecom competitor) wants to demo their new billing platform next week. Can you sit in?
9
+
10
+ Nina
documents/DOC020.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Chat Log: Michael Carter <-> Robert Smith
2
+ Date: January 13, 2025
3
+ Channel: Direct Message
4
+
5
+ Robert Smith: hey did you get a chance to pull that customer list?
6
+ Michael Carter: yeah, sending it from my personal email tonight so it doesn't show up on the apex server
7
+ Robert Smith: perfect, appreciate it
documents/DOC021.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Michael Carter <mcarter@apextelecom.com>
2
+ To: Robert Smith <robert.smith@northstarcomm.com>
3
+ Date: June 4, 2025
4
+ Subject: BlueWave Networks pricing
5
+
6
+ Robert,
7
+
8
+ Attached is the current pricing sheet we discussed for BlueWave Networks. Please don't forward this outside Northstar - I'd rather Apex not know we talked.
9
+
10
+ Michael
documents/DOC022.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Alex Kim <akim@apextelecom.com>
2
+ To: Chris Evans <cevans@apextelecom.com>
3
+ Date: May 28, 2025
4
+ Subject: Weekly status update
5
+
6
+ Hey,
7
+
8
+ Can you send me the agenda for weekly status update? Want to make sure I'm prepared.
9
+
10
+ Thanks,
11
+ Alex
documents/DOC023.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: David Lee <dlee@apextelecom.com>
2
+ To: Michael Carter <mcarter@apextelecom.com>
3
+ Date: May 24, 2025
4
+ Subject: Sunrise Health Systems check-in
5
+
6
+ Hi team,
7
+
8
+ Had a good call with Sunrise Health Systems today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.
9
+
10
+ David
documents/DOC024.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ ATTACHMENT
2
+ File Name: team_org_chart.pdf
3
+ Date: May 2, 2025
4
+
5
+ Standard internal reference document. No customer, pricing, or confidential information related to the investigation.
documents/DOC025.txt ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ATTACHMENT
2
+ File Name: Falcon Industries_pricing_sheet_CONFIDENTIAL.xlsx
3
+ Date: February 25, 2025
4
+
5
+ APEX TELECOMMUNICATIONS - INTERNAL USE ONLY
6
+
7
+ Customer: Falcon Industries
8
+ Negotiated Rate: $103/unit
9
+ Contract Term: 24 months
10
+ Internal Cost Basis: $72/unit
11
+ Sales Rep: Michael Carter
12
+
13
+ DO NOT DISTRIBUTE OUTSIDE APEX.
documents/DOC026.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Chat Log: Michael Carter <-> Robert Smith
2
+ Date: March 4, 2025
3
+ Channel: Direct Message
4
+
5
+ Robert Smith: hey did you get a chance to pull that customer list?
6
+ Michael Carter: yeah, sending it from my personal email tonight so it doesn't show up on the apex server
7
+ Robert Smith: perfect, appreciate it
documents/DOC027.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ Chat Log: David Lee <-> Mark Delgado
2
+ Date: May 8, 2025
3
+ Channel: Direct Message
4
+
5
+ David Lee: hey are we still on for the meeting time?
6
+ Mark Delgado: yep works for me, see you then
documents/DOC028.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: David Lee <dlee@apextelecom.com>
2
+ To: Priya Patel <ppatel@apextelecom.com>
3
+ Date: June 9, 2025
4
+ Subject: Q1 sales meeting
5
+
6
+ All,
7
+
8
+ Quick update on q1 sales meeting - everything is on track, no action needed from you.
9
+
10
+ David
documents/DOC029.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ Chat Log: Priya Patel <-> Chris Evans
2
+ Date: February 28, 2025
3
+ Channel: Direct Message
4
+
5
+ Priya Patel: hey are we still on for the weekend plans?
6
+ Chris Evans: yep works for me, see you then
documents/DOC030.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Michael Carter <mcarter@apextelecom.com>
2
+ To: Robert Smith <robert.smith@northstarcomm.com>
3
+ Date: January 3, 2025
4
+ Subject: Meridian Corp pricing
5
+
6
+ Robert,
7
+
8
+ Attached is the current pricing sheet we discussed for Meridian Corp. Please don't forward this outside Northstar - I'd rather Apex not know we talked.
9
+
10
+ Michael
documents/DOC031.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Michael Carter <mcarter@apextelecom.com>
2
+ To: Sarah Johnson <sjohnson@apextelecom.com>
3
+ Date: February 14, 2025
4
+ Subject: Sales meeting agenda
5
+
6
+ Hi,
7
+
8
+ Can you send me the agenda for tomorrow's sales meeting? Want to make sure I bring the right numbers.
9
+
10
+ Michael
documents/DOC032.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Michael Carter <mcarter@apextelecom.com>
2
+ To: David Lee <dlee@apextelecom.com>
3
+ Date: May 7, 2025
4
+ Subject: Redstone Retail check-in
5
+
6
+ Hi team,
7
+
8
+ Had a good call with Redstone Retail today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.
9
+
10
+ Michael
documents/DOC033.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ ATTACHMENT
2
+ File Name: team_org_chart.pdf
3
+ Date: April 5, 2025
4
+
5
+ Standard internal reference document. No customer, pricing, or confidential information related to the investigation.
documents/DOC034.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Karen Wilson <kwilson@apextelecom.com>
2
+ To: Mark Delgado <mdelgado@apextelecom.com>
3
+ Date: June 6, 2025
4
+ Subject: PTO request
5
+
6
+ All,
7
+
8
+ Quick update on pto request - everything is on track, no action needed from you.
9
+
10
+ Karen
documents/DOC035.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Chat Log: Michael Carter <-> Robert Smith
2
+ Date: January 13, 2025
3
+ Channel: Direct Message
4
+
5
+ Michael Carter: I can get you our full rate card for the healthcare vertical, just give me a day
6
+ Robert Smith: that would be huge for us, we're bidding against Apex on Sunrise Health next month
7
+ Michael Carter: on it
documents/DOC036.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Chris Evans <cevans@apextelecom.com>
2
+ To: Linda Park <lpark@apextelecom.com>
3
+ Date: June 23, 2025
4
+ Subject: IT ticket - laptop issue
5
+
6
+ All,
7
+
8
+ Quick update on it ticket - laptop issue - everything is on track, no action needed from you.
9
+
10
+ Chris
documents/DOC037.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Michael Carter <mcarter@apextelecom.com>
2
+ To: Alex Kim <akim@apextelecom.com>
3
+ Date: January 17, 2025
4
+ Subject: System maintenance window
5
+
6
+ Hi,
7
+
8
+ Sharing an update on system maintenance window. Nothing urgent, just keeping everyone informed.
9
+
10
+ Michael
documents/DOC038.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Nina Torres <ntorres@apextelecom.com>
2
+ To: Priya Patel <ppatel@apextelecom.com>
3
+ Date: February 12, 2025
4
+ Subject: CRM login issue
5
+
6
+ Hi Priya,
7
+
8
+ Just a reminder about crm login issue. Let me know if you have questions.
9
+
10
+ Nina
documents/DOC039.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Alex Kim <akim@apextelecom.com>
2
+ To: Emily Brown <ebrown@apextelecom.com>
3
+ Date: June 23, 2025
4
+ Subject: Coastal Logistics check-in
5
+
6
+ Hi team,
7
+
8
+ Had a good call with Coastal Logistics today. They're happy with service levels and we're on track for the standard renewal in Q3. Nothing unusual to report.
9
+
10
+ Alex
documents/DOC040.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ MEETING NOTES
2
+ Title: Client Renewal Review
3
+ Date: May 23, 2025
4
+ Attendees: Tom Reyes, Karen Wilson, David Lee
5
+
6
+ Discussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.
documents/DOC041.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Sarah Johnson <sjohnson@apextelecom.com>
2
+ To: Tom Reyes <treyes@apextelecom.com>
3
+ Date: May 10, 2025
4
+ Subject: Facilities update
5
+
6
+ Hi,
7
+
8
+ Sharing an update on facilities update. Nothing urgent, just keeping everyone informed.
9
+
10
+ Sarah
documents/DOC042.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ Chat Log: Michael Carter <-> David Lee
2
+ Date: May 28, 2025
3
+ Channel: Direct Message
4
+
5
+ David Lee: did you see the new public pricing page?
6
+ Michael Carter: yeah looks fine to me, nothing new there
documents/DOC043.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Chat Log: Michael Carter <-> Robert Smith
2
+ Date: January 12, 2025
3
+ Channel: Direct Message
4
+
5
+ Robert Smith: hey did you get a chance to pull that customer list?
6
+ Michael Carter: yeah, sending it from my personal email tonight so it doesn't show up on the apex server
7
+ Robert Smith: perfect, appreciate it
documents/DOC044.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Karen Wilson <kwilson@apextelecom.com>
2
+ To: Mark Delgado <mdelgado@apextelecom.com>
3
+ Date: March 14, 2025
4
+ Subject: Parking garage closure
5
+
6
+ Hi Mark,
7
+
8
+ Just a reminder about parking garage closure. Let me know if you have questions.
9
+
10
+ Karen
documents/DOC045.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ From: Mark Delgado <mdelgado@apextelecom.com>
2
+ To: David Lee <dlee@apextelecom.com>
3
+ Date: June 3, 2025
4
+ Subject: Client satisfaction survey results
5
+
6
+ Hi,
7
+
8
+ Sharing an update on client satisfaction survey results. Nothing urgent, just keeping everyone informed.
9
+
10
+ Mark
documents/DOC046.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ MEETING NOTES
2
+ Title: Client Renewal Review
3
+ Date: March 2, 2025
4
+ Attendees: Karen Wilson, Michael Carter, Sarah Johnson
5
+
6
+ Discussed pipeline status, upcoming renewals, and staffing. No issues raised. Next meeting scheduled for two weeks out.
documents/DOC047.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ Chat Log: Priya Patel <-> Nina Torres
2
+ Date: February 13, 2025
3
+ Channel: Direct Message
4
+
5
+ Priya Patel: hey are we still on for the lunch?
6
+ Nina Torres: yep works for me, see you then