Therapeutic area
Designation eligible
Pipeline density
Watchlist
Save gaps to your watchlist to get alerts when scores change.
Upgrade to Pro →

Gap Intelligence

Showing 6 indications · sorted by gap score

Indication
Score
Burden
Designation
Signal
Gap score
Key metrics
What this means for patients

Clinical intelligence

Regulatory timeline

🔔 Set a score alert
Data infrastructure

Built on Neon Postgres — live every day.

All gap scores are computed from six core tables. The schema is purpose-built for clinical intelligence — normalized, indexed, and refreshed via daily Netlify scheduled functions.

-- Arbitrant core schema (Neon Postgres)

CREATE TABLE indications (
  id            uuid PRIMARY KEY DEFAULT gen_random_uuid(),
  name          text NOT NULL,
  orphan_code   text,
  therapeutic   text,
  patient_burden int,
  created_at    timestamptz DEFAULT now()
);

CREATE TABLE trials (
  id              uuid PRIMARY KEY DEFAULT gen_random_uuid(),
  nct_id          text UNIQUE NOT NULL,
  indication_id   uuid REFERENCES indications,
  phase           text,
  status          text,
  sponsor         text,
  start_date      date
);

CREATE TABLE gap_scores (
  id              uuid PRIMARY KEY DEFAULT gen_random_uuid(),
  indication_id   uuid REFERENCES indications,
  score           numeric(5,2),
  trial_density   int,
  patent_prox     numeric(5,2),
  computed_at     timestamptz DEFAULT now()
);

CREATE TABLE designations (
  id              uuid PRIMARY KEY DEFAULT gen_random_uuid(),
  indication_id   uuid REFERENCES indications,
  type            text, -- orphan | breakthrough | fast_track | rmat
  eligible        boolean,
  precedents      jsonb
);

CREATE TABLE watchlists (
  id              uuid PRIMARY KEY DEFAULT gen_random_uuid(),
  user_id         uuid, -- Supabase auth uid
  indication_id   uuid REFERENCES indications,
  alert_threshold numeric(5,2),
  created_at      timestamptz DEFAULT now()
);

CREATE TABLE clincol_signals (
  indication_id   uuid REFERENCES indications,
  search_volume_7d int, -- aggregated from clincol.org searches
  recorded_at     date
);
Coming next

More Arbitrant intelligence tools

A-02
Beta
Pathway Intelligence

Input a molecule profile and indication. AI ranks your FDA designation options with historical precedents and timeline projections.

Request beta access →
A-03
Q3 2026
Biotech Deal Desk

Comparable licensing deal data — milestone structures, royalty benchmarks, and M&A multiples for rare and orphan disease.

Join waitlist →
A-04
Q4 2026
Clincol Signal Overlay

Direct integration of Clincol.org public search trends as an additional gap signal layer. High awareness + low trials = urgent gap.

Visit Clincol.org →