Copendency Requirements for Continuation Applications

Copendency is the requirement, imposed by 35 U.S.C. § 120, that a continuation application be filed before the prior application it claims benefit from is patented, abandoned, or has proceedings terminated. It is the load-bearing condition of the entire continuing-application system: without an unbroken chain of copending applications, a continuation is not entitled to its parent’s filing date, and every claim collapses to the continuation’s own, far later date — exposing them to years of intervening prior art.

This procedure sits under Continuation & CIP Deadline Tracking and supplies the copendency check that the Priority Claim Chain Validation engine relies on when it traverses a multi-generation family. Where terminal-disclaimer tracking watches the child’s own prosecution, copendency watches the parent’s terminal events — the moments that close the window forever.

The Rule, Precisely Stated

The statute at 35 U.S.C. § 120 conditions benefit on the later application being “filed before the patenting or abandonment of or termination of proceedings on the first application.” Three distinct terminal events can close the copendency window, and a docketing system must recognize all three:

  • Patenting. The parent issues as a patent. A patent grants at the beginning of its issue date, so a continuation filed on the issue date is copending, but one filed the following day is not. The issue date is the hard boundary.
  • Abandonment. The parent goes abandoned — most commonly by failure to respond to an Office action, which takes effect the day after the last extendable response date under 37 CFR § 1.135, or by failure to pay the issue fee. Abandonment is dangerous precisely because it arrives silently; no affirmative notice defines the moment for the docket unless the system computes it.
  • Termination of proceedings. Proceedings end — for example, after an appeal decision with no further action available. This is the least common but must still be modeled as a window-closing event.

There is no grace period on copendency and no petition to revive a lost benefit claim once the window has closed. This is what makes it a statutory deadline in the taxonomy defined by the Core Docketing Architecture & Deadline Types reference — categorically unrecoverable, unlike the petition-curable benefit-claim statement discussed below. The examination guidance is collected in MPEP § 211.01(b).

Copendency across a three-generation continuation chain Three pendency bars are stacked as a timeline flowing left to right. The grandparent application was filed in 2018 and granted in 2021; its pendency is the first bar. The parent was filed in 2020, which falls inside the grandparent's pendency, so that link is copending. The continuation child was filed in 2021, which falls inside the parent's pendency, so that link is also copending. Two dashed vertical connectors show each child's filing date rising to the bar of the application whose date it inherits, each marked copending. A separate broken-link example card on the right shows a would-be child filed in 2023, after the parent was abandoned in 2022, which loses section 120 benefit with no petition to cure it. A footer states the rule: a continuation must be filed on or before the day the parent grants, is abandoned, or proceedings terminate. 1 GRANDPARENT filed 2018 → granted 2021 × BROKEN LINK child filed 2023, after the parent was abandoned 2022 → §120 benefit lost, unrecoverable 2 PARENT filed 2020 → abandoned 2022 3 CONTINUATION filed 2021 (inside parent pendency) copending ✓ copending ✓ 35 U.S.C. § 120: each child must be filed BEFORE its parent grants, is abandoned, or proceedings terminate every link in the chain must be independently copending — one break collapses the effective date for all applications below it

Operational Action: Treat every parent terminal event — issue date, computed abandonment date, termination of proceedings — as a copendency alarm on any child that is or might be filed against it. Escalate a copendency miss as statutory/unrecoverable, never as a curable formality.

Copendency vs. the Benefit-Claim Statement

Copendency is often confused with the benefit-claim timing rule, but they are separate gates with opposite recoverability. Copendency governs when the child must be filed; the benefit-claim statement governs when the child must formally reference the parent. Under 37 CFR § 1.78, a non-provisional claiming benefit under § 120 must include a specific reference to the prior application in an application data sheet, and § 1.78(d)(3) sets the deadline at the later of four months from the child’s actual filing date or sixteen months from the parent’s filing date.

The critical difference for the docket is recoverability. A late benefit-claim statement can be accepted on a petition under § 1.78© with a fee and an unintentional-delay statement — it is procedural. A copendency failure cannot be cured at all — it is statutory. A system that files a continuation one day after the parent’s grant has lost the benefit permanently, and no timely § 1.78 statement can resurrect it. The two must therefore be modeled as distinct deadlines with distinct escalation categories, exactly as the Continuation & CIP Deadline Tracking model prescribes.

Validating Copendency Across a Family

Because § 120 benefit is transitive, copendency must hold at every link, not just between the child and its immediate parent. A great-grandchild reaches the original filing date only if the grandparent–parent link and the parent–child link are both copending. A single break anywhere in the chain truncates the effective filing date for everything below the break. The validator below walks a family from a leaf application up to the root, checks each link, and reports the first broken link rather than silently returning a truncated date.

from __future__ import annotations

from dataclasses import dataclass
from datetime import date


@dataclass(frozen=True)
class FamilyLink:
    """One benefit link: `child` claims the filing date of `parent`."""
    child_number: str
    child_filing_date: date
    parent_number: str
    parent_filing_date: date
    # The parent's earliest terminal event (issue, abandonment, or termination).
    # None means the parent is still pending, so copendency is intact.
    parent_terminated_on: date | None


@dataclass(frozen=True)
class CopendencyResult:
    is_valid: bool
    broken_link: FamilyLink | None       # first link that fails, if any
    effective_filing_date: date          # earliest date the leaf can actually claim


def validate_family_copendency(chain: list[FamilyLink]) -> CopendencyResult:
    """Validate 35 U.S.C. 120 copendency along a chain ordered leaf -> root.

    Each link is copending only if the child was filed on or before the parent's
    terminal event (a patent grants at the START of its issue date, so filing ON
    that date is still copending -> the test is `<=`). The first broken link
    truncates the effective filing date to that link's child date, because no
    benefit propagates across a break.
    """
    if not chain:
        raise ValueError("chain must contain at least one FamilyLink")

    # Absent a break, the leaf inherits the root parent's filing date.
    effective = chain[-1].parent_filing_date

    for link in chain:
        terminal = link.parent_terminated_on
        copending = terminal is None or link.child_filing_date <= terminal
        if not copending:
            # Benefit stops here: the leaf keeps only this child's own date.
            return CopendencyResult(
                is_valid=False,
                broken_link=link,
                effective_filing_date=link.child_filing_date,
            )

    return CopendencyResult(
        is_valid=True,
        broken_link=None,
        effective_filing_date=effective,
    )

Two design choices carry the compliance weight. The comparison is <=, not <, because a patent grants at the start of its issue date, so a child filed on the issue date is copending — an off-by-one that would otherwise reject valid continuations. And a broken link returns the child’s filing date of the failed link, not the root’s, because benefit cannot jump a break: everything below the break is stranded on the first surviving date. The result object names the offending link so a paralegal sees exactly where the chain failed, mirroring the break-reporting contract of the Priority Claim Chain Validation engine.

Operational Action: Re-run family copendency validation on every event that changes a link — a recorded abandonment, an issue-fee payment, a filing-date correction — and store the returned effective filing date and any named broken link on the leaf application, rather than assuming the chain is still intact from a prior run.

Frequently Asked Questions

Is a continuation filed on the same day the parent is granted still copending?
Yes. A patent grants at the beginning of its issue date, and 35 U.S.C. § 120 requires the continuation to be filed before the patenting of the parent, which the USPTO treats as on or before the issue date. So a continuation filed on the grant date is copending, but one filed the next day is not. This is why the copendency comparison in code must be "on or before" the terminal event, not strictly before it — using a strict inequality would wrongly reject valid same-day continuations.
What is the difference between losing copendency and missing the benefit-claim deadline?
They are separate gates with opposite recoverability. Copendency under § 120 governs when the continuation must be filed and is unrecoverable — if the parent has already granted or gone abandoned, the benefit is gone with no petition to cure it. The benefit-claim statement under 37 CFR § 1.78 governs when the child must formally reference the parent and is recoverable by an unintentional-delay petition with a fee. A docketing system must model them as distinct deadlines in different escalation categories.
Does copendency have to hold at every generation of a family?
Yes. Section 120 benefit is transitive, so a grandchild reaches the original filing date only if every intermediate link is independently copending. A single broken link — for example an intermediate application that went abandoned before the next child was filed — truncates the effective filing date for everything below the break. That is why a family validator must walk the whole chain and report the first broken link rather than checking only the immediate parent.
How does a docketing system detect the parent's abandonment date for copendency?
Abandonment usually arrives silently, so the system must compute it rather than wait for a notice. The most common trigger is failure to respond to an Office action, which takes effect the day after the last extendable response date under 37 CFR § 1.135, or failure to pay the issue fee. The docket should derive that date from the parent's own deadlines and treat it as the copendency window-closing event for any child filed against the parent, escalating it as an unrecoverable deadline.

↑ Back to Continuation & CIP Deadline Tracking