# Internal tools & dashboards

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

Internal software is where companies quietly bleed money, because nobody posts a Yelp review when the scheduling tool lies. We wrote this for operations leads in Pierce and King who are done being CCd into oblivion. The goal is not "more dashboards." The goal is fewer heroic employees holding the whole place together with memory.

Good tools feel boring on purpose. They make approvals legible, exceptions rare, and audits survivable. If you have ever watched someone re-type the same numbers into two systems, you already know why we care.


## Structured data (JSON-LD)

The public **HTML** page at `/internal-tools` 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\/internal-tools#webpage",
            "url": "https:\/\/thatonefirm.com\/internal-tools",
            "name": "Internal tools & dashboards",
            "description": "Custom dashboards, approvals, and field workflows that reduce email chains and spreadsheet risk.",
            "isPartOf": {
                "@id": "https:\/\/thatonefirm.com\/#website"
            },
            "dateModified": "2026-04-20T17:12:01+00:00",
            "breadcrumb": {
                "@id": "https:\/\/thatonefirm.com\/internal-tools#breadcrumb"
            }
        },
        {
            "@type": "Article",
            "@id": "https:\/\/thatonefirm.com\/internal-tools#article",
            "headline": "Internal tools & dashboards",
            "description": "Custom dashboards, approvals, and field workflows that reduce email chains and spreadsheet risk.",
            "datePublished": "2026-04-20T13:14:02+00:00",
            "dateModified": "2026-04-20T17:12:01+00:00",
            "mainEntityOfPage": {
                "@id": "https:\/\/thatonefirm.com\/internal-tools#webpage"
            },
            "author": {
                "@id": "https:\/\/thatonefirm.com\/#organization"
            },
            "publisher": {
                "@id": "https:\/\/thatonefirm.com\/#organization"
            },
            "url": "https:\/\/thatonefirm.com\/internal-tools"
        },
        {
            "@type": "BreadcrumbList",
            "@id": "https:\/\/thatonefirm.com\/internal-tools#breadcrumb",
            "itemListElement": [
                {
                    "@type": "ListItem",
                    "position": 1,
                    "name": "Home",
                    "item": "https:\/\/thatonefirm.com\/"
                },
                {
                    "@type": "ListItem",
                    "position": 2,
                    "name": "Internal tools & dashboards",
                    "item": "https:\/\/thatonefirm.com\/internal-tools"
                }
            ]
        }
    ]
}
```
