# Data security & tech handoffs

<!-- updated_at: 2026-04-20 17:12:01 -->

Security is not a PDF folder—it is daily habits that still work when the person who built everything goes on vacation. This page is for owners who have been burned by "we will document it later" and later never came. Handoffs are part of the product, not an appendix.

Repos, deployment notes, environment inventory, and a day-two checklist are the minimum adult table stakes. Training should hit the people who actually run the system, not only the owner's inbox.


## Structured data (JSON-LD)

The public **HTML** page at `/tech-handoffs` emits `application/ld+json` with the following `@graph` (Organization, WebSite, WebPage, Article, BreadcrumbList, plus any custom nodes from **SEO JSON-LD extra** in Admin). Assistants should treat the HTML URL as canonical for search; this block is for parity and tooling.

```json
{
    "@context": "https:\/\/schema.org",
    "@graph": [
        {
            "@type": "Organization",
            "@id": "https:\/\/thatonefirm.com\/#organization",
            "name": "That One Firm",
            "url": "https:\/\/thatonefirm.com\/"
        },
        {
            "@type": "WebSite",
            "@id": "https:\/\/thatonefirm.com\/#website",
            "name": "That One Firm",
            "url": "https:\/\/thatonefirm.com\/",
            "publisher": {
                "@id": "https:\/\/thatonefirm.com\/#organization"
            }
        },
        {
            "@type": "WebPage",
            "@id": "https:\/\/thatonefirm.com\/tech-handoffs#webpage",
            "url": "https:\/\/thatonefirm.com\/tech-handoffs",
            "name": "Data security & tech handoffs",
            "description": "Code ownership transfer, access hygiene, and training so your team can operate after launch without heroics.",
            "isPartOf": {
                "@id": "https:\/\/thatonefirm.com\/#website"
            },
            "dateModified": "2026-04-20T17:12:01+00:00",
            "breadcrumb": {
                "@id": "https:\/\/thatonefirm.com\/tech-handoffs#breadcrumb"
            }
        },
        {
            "@type": "Article",
            "@id": "https:\/\/thatonefirm.com\/tech-handoffs#article",
            "headline": "Data security & tech handoffs",
            "description": "Code ownership transfer, access hygiene, and training so your team can operate after launch without heroics.",
            "datePublished": "2026-04-20T13:14:44+00:00",
            "dateModified": "2026-04-20T17:12:01+00:00",
            "mainEntityOfPage": {
                "@id": "https:\/\/thatonefirm.com\/tech-handoffs#webpage"
            },
            "author": {
                "@id": "https:\/\/thatonefirm.com\/#organization"
            },
            "publisher": {
                "@id": "https:\/\/thatonefirm.com\/#organization"
            },
            "url": "https:\/\/thatonefirm.com\/tech-handoffs"
        },
        {
            "@type": "BreadcrumbList",
            "@id": "https:\/\/thatonefirm.com\/tech-handoffs#breadcrumb",
            "itemListElement": [
                {
                    "@type": "ListItem",
                    "position": 1,
                    "name": "Home",
                    "item": "https:\/\/thatonefirm.com\/"
                },
                {
                    "@type": "ListItem",
                    "position": 2,
                    "name": "Data security & tech handoffs",
                    "item": "https:\/\/thatonefirm.com\/tech-handoffs"
                }
            ]
        }
    ]
}
```
