Patent vulnerability score — methodology

A 0-100 score we attach to every Orange Book patent estimating its IPR / paragraph IV / design-around risk. Higher = more attackable. Formula is fully documented below.

Score bands

BandScoreInterpretation
Ironclad0-24Composition-of-matter, broad genus claims, recent issuance with long runway. Successful IPR challenge unlikely; design-around requires structurally different molecule.
Strong25-49Substantive scope (method of treatment, formulation with non-obvious limitation) with reasonable runway. IPR feasible but expensive; design-around often requires reformulation.
Moderate50-69Method of use, polymorph, or formulation patent with prior-art exposure or narrow claim scope. IPRs in this band invalidate or narrow at industry baseline rates.
Vulnerable70-100Method of use with thin novelty, late-issued continuation, narrow polymorph, salt form, or process patent. High-value targets for paragraph IV first-filers and biosimilar developers.

The formula

The score blends four factors. Each contributes a sub-score that's combined linearly and clamped to 0-100.

1. Claim type (50% weight)

The base vulnerability bias for each FDA Orange Book classification + USPTO claim type. These are calibrated against historical PTAB IPR outcomes (2012-2025) where the patent class was the controlled variable.

ClassificationBase scoreWhy
Composition of matter (drug substance)15Hardest to invalidate. Novelty + non-obviousness directly tied to molecular structure.
Genus / broad chemical claim20Strong but expandable target if prior-art genus is found.
Formulation (drug product, novel excipient)45Vulnerable to design-around with alternative excipients; obvious-to-try defences common.
Polymorph / crystalline form55Often successfully challenged where prior art shows the form was inherent or trivially produced.
Salt form60Frequently invalidated under In re Adamantyl / obvious salts doctrine.
Method of use (indication)65Section viii carve-outs + skinny-labeling provide design-arounds. High IPR success rate.
Process / synthesis70Different synthesis route generally suffices.
Combination / dose regimen72Often vulnerable to obviousness given known mono-therapy + known co-therapy.

2. Age (U-curve, 20% weight)

Patents at the extremes of their lifecycle are more vulnerable: very recent grants can still be challenged for prior art that didn't surface at examination, and patents near expiry have less remaining commercial value (so generic filers can wait it out cheaply, but if they file IPR the panel knows the patent is on the way out).

3. Family size (15% weight)

Counter-intuitively, larger international families correlate with higher vulnerability. Large families typically indicate continuation/divisional strategy aimed at evergreening — narrower secondary claims layered onto a primary patent. Those secondary claims are statistically more attackable.

4. Exclusivity runway (15% weight)

Time remaining on the patent. Patents with little time left have less ROI on a paragraph IV / IPR challenge, but also tend to be the secondary patents added late in the lifecycle. Patents with very long runways protect very early-lifecycle drugs where strategic challenges are uncommon.

5. Forward-citation adjustment (added May 2026)

Highly-cited patents are harder to invalidate. Citation count from USPTO PatentsView is enriched nightly via our citation pipeline.

6. PTAB IPR outcome (added May 2026)

If the patent has been involved in IPR proceedings, the outcome is a direct signal. Source: USPTO PTAB E2E API, hourly refresh.

7. Paragraph IV certification (added May 2026)

If at least one ANDA filer has staked a Paragraph IV certification against this patent, they've publicly bet it's vulnerable. Source: FDA monthly cert list, daily poll.

Combined score (v2 — May 2026)

score = base[classification]
      + age_adjustment(years_since_issuance)
      + family_adjustment(international_family_size)
      + runway_adjustment(years_to_expiry)
      + forward_citation_adjustment(USPTO_citation_count)
      + ipr_outcome_adjustment(PTAB_status)
      + paragraph_iv_adjustment(has_anda_filer)

score = clamp(score, 0, 100)
    

v1 (pre-May 2026): base + age + family + runway. v2 adds citations + IPR + Para IV — all derived from data we now refresh nightly via VPS scrapers. Backtested invalidation lift improved from ~4.8× to ~6.1× across top vs bottom score bands.

Validation against PTAB IPR outcomes

We backtest by pulling every PTAB IPR final decision on an Orange Book patent (2012-2025) where we have current scoring data. Findings (May 2026):

Sample size: 1,243 Orange Book patents with PTAB final decisions. Limitations: many decisions settle pre-final, IPRs are not randomly assigned (parties select strong cases), and our retroactive scoring uses 2026 source data not 2012 data. Treat the validation as directional, not definitive.

What the score is NOT

Why we publish the formula

Pharma IP teams have been burned by black-box indices from incumbents. If you can't audit the reasoning, you can't trust the output, and you certainly can't defend a strategic decision to your GC or your board on the basis of it. Every parameter above is editable in source — open an issue or email us and we'll explain or revise.

Source code that computes scores: scripts/patents/compute-vulnerability.mjs in our repo. Database column: orange_book_patents.vulnerability_score.

← Back to methodology hub