IP Protection Decision Framework
Purpose
This recipe produces an IP Protection Strategy Matrix that maps each of a startup's innovations, brands, and creative works to the optimal protection type (patent, trade secret, trademark, or copyright), with cost estimates, filing timelines, and priority rankings. The output is an actionable filing plan that prevents common mistakes like patenting what should be a trade secret, or neglecting trademark registration until a competitor files first. [src7]
Prerequisites
- Innovation inventory — list of all products, processes, algorithms, brands, logos, content, and proprietary data
- Business model description — how each innovation generates revenue
- USPTO.gov account — free account at USPTO for trademark searches and filings
- Budget allocation — IP budget approved (minimum $500, $5K-$15K+ for patent prosecution)
- Legal counsel access — patent attorney or IP law firm identified for complex filings
Constraints
- USPTO fees change annually — verify current fee schedule at uspto.gov/fees before filing [src1]
- Patent applications require full public disclosure — irreversible once published (18 months after filing) [src4]
- Trade secret protection requires "reasonable measures" (NDAs, access controls) under DTSA — without them, courts will not enforce claims [src3]
- Trademark rights arise from use in commerce — federal registration provides nationwide priority and federal court access [src2]
- Most startups qualify for micro entity (80% fee reduction) or small entity (50% reduction) USPTO status [src1]
- This card covers US jurisdiction primarily — international filing (PCT, Madrid Protocol) adds significant cost
Tool Selection Decision
What type of IP needs protection?
├── Brand name, logo, slogan, or product name
│ └── PATH A: Trademark Registration
├── Novel invention, device, process, or composition
│ ├── Can competitors reverse-engineer it?
│ │ ├── Yes → PATH B: Patent (provisional → utility)
│ │ └── No → PATH C: Trade Secret
├── Software, writing, design, music, or creative work
│ └── PATH D: Copyright Registration
├── Internal process, formula, algorithm, or data set
│ └── PATH C: Trade Secret
└── Multiple types
└── Evaluate each innovation separately through this tree
| Path | Protection Type | Gov Cost | Attorney Cost | Timeline | Duration |
|---|---|---|---|---|---|
| A: Trademark | Federal trademark | $350/class | $650-$2,500 | 8-14 months | 10 years (renewable) |
| B: Patent | Provisional + utility | $65-$2,000 | $2K-$15K+ | 2-4 years | 20 years from filing |
| C: Trade Secret | NDA + controls | $0 | $500-$2,000 | Immediate | Indefinite |
| D: Copyright | Federal registration | $45-$65 | $0-$500 | 3-6 months | Life+70 / 95 years |
Execution Flow
Step 1: Inventory and Classify All IP Assets
Duration: 30-60 minutes · Tool: Spreadsheet
Catalog every piece of intellectual property the startup has or is developing. Classify each into one or more protection categories using the decision tree above.
Classification rules:
- If it is a name, logo, or slogan → Trademark
- If it is a novel, non-obvious invention that competitors can see → Patent
- If it is an internal process, formula, or data that competitors cannot see → Trade Secret
- If it is original creative expression (code, text, design, media) → Copyright
- Many assets need MULTIPLE protections (e.g., software = copyright + trade secret + possibly patent)
Verify: Every revenue-generating or moat-creating asset is listed · If failed: Interview each founder and engineer separately
Step 2: Trademark Search and Filing
Duration: 1-2 hours for search; 8-14 months for registration · Tool: USPTO TESS, filing service or attorney
For each brand asset, search for conflicts at USPTO TESS, then file. USPTO base filing fee: $350/class. Custom identification surcharge: +$200/class. With attorney: $1,000-$2,850/class total. With LegalZoom: ~$999/class. [src2]
Verify: TESS search returns no identical or confusingly similar marks in relevant classes · If failed: Consult trademark attorney before filing
Step 3: Patent Strategy — Provisional vs. Utility
Duration: 1-4 weeks for provisional; 2-4 years for full prosecution · Tool: Patent attorney
Provisional patent (micro entity): $65 USPTO + $2K-$5K attorney = $2,065-$5,325 total. Utility patent (micro entity): $455 USPTO + $7.5K-$15K attorney = $10K-$20K+ total. File provisional first when technology is still evolving or you need quick "patent pending" status. [src5]
Verify: Provisional describes invention in sufficient detail to support utility claims · If failed: If prior art blocks patent, pivot to trade secret for non-public aspects [src4]
Step 4: Trade Secret Protection Program
Duration: 1-2 days setup; ongoing maintenance · Tool: NDA templates, access control systems
Establish formal trade secret protection. DTSA requires "reasonable measures" to maintain secrecy. All employee NDAs must include the DTSA whistleblower notice. Setup cost: $500-$2,000 with attorney; ongoing: $400-$1,600/year. [src3]
Verify: Every person with access to trade secrets has a signed NDA with DTSA notice · If failed: Missing NDAs can destroy trade secret status for all information shared with that person
Step 5: Copyright Registration
Duration: 30-60 minutes to file; 3-6 months for certificate · Tool: US Copyright Office eCO
Register copyright for key creative works. Single author: $45. Standard application: $65. Group of unpublished works (up to 10): $85. No attorney needed for straightforward registrations. [src6]
Verify: Registration confirmation received for all high-priority works · If failed: Verify deposit copy file format meets Copyright Office requirements
Step 6: Compile IP Strategy Matrix and Filing Calendar
Duration: 30 minutes
Consolidate all decisions into a single strategy document with deadlines: Week 1 (trade secrets), Week 2 (trademarks), Week 3 (copyrights), Week 4 (provisional patent), Month 12 (utility patent conversion).
Verify: Every IP asset has at least one protection type assigned with specific deadline · If failed: If budget insufficient, prioritize: trade secrets first, trademarks second, copyrights third, patents last
Output Schema
{
"output_type": "ip_protection_strategy",
"format": "JSON",
"columns": [
{"name": "asset_name", "type": "string", "description": "Name of the IP asset", "required": true},
{"name": "asset_type", "type": "string", "description": "invention, brand, process, creative_work, data", "required": true},
{"name": "protection_type", "type": "string", "description": "patent, trade_secret, trademark, copyright", "required": true},
{"name": "estimated_cost", "type": "string", "description": "Low-high cost range including attorney fees", "required": true},
{"name": "filing_deadline", "type": "date", "description": "Target filing date", "required": true},
{"name": "timeline_to_registration", "type": "string", "description": "Time from filing to granted protection", "required": true},
{"name": "protection_duration", "type": "string", "description": "How long protection lasts", "required": true},
{"name": "priority", "type": "string", "description": "critical, high, medium, low", "required": true},
{"name": "status", "type": "string", "description": "not_started, filed, pending, granted", "required": true}
],
"expected_row_count": "5-20",
"sort_order": "priority descending, filing_deadline ascending",
"deduplication_key": "asset_name + protection_type"
}
Quality Benchmarks
| Quality Metric | Minimum Acceptable | Good | Excellent |
|---|---|---|---|
| Asset coverage | Core product + brand covered | All revenue-generating assets | Every asset classified with rationale |
| NDA coverage | Founders + employees signed | + contractors + advisors | + investors + partners + vendors |
| Trademark search depth | USPTO TESS only | + state DBs + domain check | + common law + international search |
| Patent prior art search | Google Patents scan | Professional search ($1K-$3K) | Attorney patentability opinion ($3K-$5K) |
| Documentation completeness | Asset list exists | + filing calendar + cost estimates | + decision rationale + annual review plan |
If below minimum: At minimum, establish trade secret protections (NDAs) and file trademark applications for the company name. These two steps cost under $2,000 total and cover the most common IP failures.
Error Handling
| Error | Likely Cause | Recovery Action |
|---|---|---|
| Trademark rejected (likelihood of confusion) | Similar mark exists in same class | Consult attorney for design-around or coexistence agreement |
| Provisional patent expires without utility filing | Missed 12-month deadline | File utility immediately if in grace period; otherwise refile provisional (loses priority date) |
| Trade secret leaked by employee | Missing or unenforceable NDA | Document leak, consult attorney on DTSA/UTSA claim, strengthen NDA program |
| Copyright registration rejected | Insufficient originality or wrong category | Reclassify work type, add original elements, refile with attorney |
| Patent prior art rejection | Invention not novel or obvious over prior art | Amend claims with attorney, consider narrower claims, or pivot to trade secret |
| Budget insufficient for all filings | Underestimated total IP costs | Prioritize: trade secret ($0) → trademark ($999) → copyright ($65) → patent ($2K-$15K+) |
Cost Breakdown
| Component | DIY / Free Tier | Online Service | With Attorney |
|---|---|---|---|
| Trademark (per class) | $350 (USPTO fee only) | $649-$999 (LegalZoom + fee) | $1,000-$2,850 total |
| Patent — provisional | $65-$325 (USPTO, self-filed) | N/A | $2,000-$5,000 total |
| Patent — utility (micro) | $455 (not recommended DIY) | N/A | $10,000-$20,000+ |
| Patent — utility (small) | $910 (not recommended DIY) | N/A | $12,000-$25,000+ |
| Patent — maintenance (20yr, micro) | $6,300 total | N/A | $6,300 + attorney |
| Trade secret program | $0 (template NDAs) | $99-$500 (NDA service) | $500-$2,000 setup |
| Copyright registration | $45-$65 per work | N/A | $100-$500 per work |
| Minimum startup package | $460 | $1,100-$1,600 | $2,000-$5,000 |
| Comprehensive package | $1,000-$2,000 | $3,000-$5,000 | $15,000-$30,000+ |
Anti-Patterns
Wrong: Filing a patent for something that should be a trade secret
Startups often reflexively pursue patents for algorithms or internal processes that competitors cannot see or reverse-engineer. Patent filing requires full public disclosure — once published, the information is permanently public, even if the patent is never granted. [src4]
Correct: Use the reverse-engineerability test
If competitors cannot discover the innovation by examining your product, trade secret protection is usually superior. It costs less, takes effect immediately, and lasts indefinitely. Reserve patents for inventions that are visible in the product. [src4]
Wrong: Delaying trademark filing until the brand is established
Many startups wait to file trademarks until they have significant revenue. During this delay, a competitor or trademark squatter can register the same or confusingly similar mark, forcing a costly opposition or rebrand. [src7]
Correct: File trademark applications before or at launch
File as soon as you commit to a name, even on an intent-to-use basis. The $350 filing fee is trivial compared to the cost of rebranding ($50K-$500K+ for an established brand). [src2]
Wrong: Relying on copyright alone for software protection
Copyright protects the expression of code (literal copying), not the underlying functionality. A competitor can legally replicate your features as long as they write their own code. [src7]
Correct: Layer protections for software
Combine copyright registration ($65, protects code expression), trade secret protection (protects proprietary algorithms), and potentially patent protection (protects novel functional methods).
When This Matters
Use this recipe when a startup needs to determine which IP protections to pursue, in what order, and at what budget. It replaces guesswork with a structured decision framework that accounts for cost, timeline, enforceability, and strategic fit. Most valuable pre-launch or within the first year of operations, when IP decisions have the highest leverage and lowest correction cost.