Industry blueprints — production-shaped patterns for regulated verticals
What’s here today
Section titled “What’s here today”| Blueprint | Industry | Frameworks addressed |
|---|---|---|
| Healthtech — patient intake form | Clinical / EHR | 45 CFR § 164.312 (HIPAA technical safeguards) — partial coverage at the React UI layer |
What’s coming (v3.20 wishlist)
Section titled “What’s coming (v3.20 wishlist)”The next blueprints we’ll write — in roughly this order — are:
- Fintech — checkout with PCI-DSS-aligned card handling. Single-page card capture that never touches PAN data in the React app (delegates to your provider’s iframe SDK), with audit trail of every customer-facing state change.
- Govtech — Section 508 / EAA-aligned form flow. Multi-step form pattern with explicit keyboard nav, screen-reader walkthrough, and reduced-motion fallbacks. Maps to the WCAG 2.1 AA / AAA criteria your VPAT will require.
- EdTech — FERPA-aligned student record viewer. Audit-logged access to student records, role-based field visibility, parental-consent flow.
- Insurance — claims intake with document upload. File upload with magic-byte verification, OCR handoff (consumer-driven), claim audit trail.
Open an issue if you want to vote on the order, or if your vertical isn’t on the list and you’d partner on writing one.
How to read a blueprint
Section titled “How to read a blueprint”Each page follows the same structure:
- The scenario — what real-world workflow this addresses
- Framework mapping — which specific regulatory subparts the primitives help satisfy (with citations)
- The blueprint — full working code, typically multiple steps
- What’s built-in — the wins
- What this does NOT cover — the larger compliance perimeter your organization still owns. Always large. Always specific.
- Gotchas — real edge cases from the implementation
- References — the actual statutes / regulations / standards cited
Difference from recipes
Section titled “Difference from recipes”Recipes are primitive-shaped — one focused pattern using one to three library APIs. Industry blueprints are larger and compose more primitives, with explicit framework citations. If you’re trying to ship a feature, look at a recipe. If you’re trying to ship a production shape for a regulated industry, look at a blueprint.