๐ Search:
Filter:
| Name | Type | First Seen | Source | Notes |
| Loading... |
| Date | Event | Parties Involved | Source |
| Loading... |
| Lead Title | Summary | Entities | Status | Assigned | Notes |
| Loading... |
| Tail Number | Aircraft Type | Owner/Operator | Dates Used | Routes | Source | Notes |
| Loading... |
| Contradiction | Source File | Logged |
| Loading... |
// Asset registry โ real property, vehicles, accounts, crypto, and other holdings
// Supabase Setup Required โ run this SQL in your Supabase dashboard:
create table assets (
id uuid default gen_random_uuid() primary key,
asset_type text, description text, estimated_value numeric,
owner_of_record text, beneficial_owner text, acquisition_date text,
source_doc text, linked_entities text, discrepancy_flag boolean default false,
investigator text, notes text, created_at timestamptz default now()
);
alter table assets enable row level security;
create policy "anon_all" on assets for all using (true) with check (true);
// Automated cross-analysis across all internal data โ zero external calls
Click the Cross-Ref tab to run analysis on loaded data.