See it as a diagram
Everything below, as a diagram you can edit. Describe yours and see it in seconds.
No account needed · Editable canvas, not a picture
Model 2: CODEOWNERS on docs paths
For documentation living in the repo, GitHub and GitLab already ship an ownership mechanism. A CODEOWNERS file maps paths to owners, review requests go out automatically on any PR touching those paths, and branch protection can require an owner's approval before merge. Two syntax details bite first-time users: the last matching pattern wins, so generic rules go at the top and specific ones below, and team aliases beat individual handles because teams do not resign.
The failure mode is scope: CODEOWNERS governs edits, not existence. It guarantees a qualified reviewer when someone changes docs/runbooks/, and says nothing when nobody changes a page that needed changing. It pairs well with a freshness gate for exactly that reason, and it only covers docs that live in git.
# .github/CODEOWNERS # Last matching pattern wins: generic rules first, specific below. # Team aliases, never individuals; individuals leave. *.md @acme/docs-guild /docs/ @acme/platform-team /docs/architecture/ @acme/platform-team /docs/runbooks/ @acme/sre-team /services/billing/docs/ @acme/payments-team
Model 3: service-owner, wired through the catalog
The cleanest model for microservice orgs: the team that runs a service owns its documentation, wherever that documentation lives. The mapping already exists if you run a service catalog; Backstage records it as spec.owner in each component's catalog-info.yaml, and the catalog entry links out to the service's docs, so ownership of the page is derivable from ownership of the system.
It fails at the seams. Cross-cutting pages, the platform overview, the incident process, onboarding, describe no single service and therefore get no owner from this model. Every service-owner org needs a second mechanism for shared pages, which is where the guild comes in. The multi-repo version of this problem has its own guide on keeping microservices docs in sync.
Model 4: the guild rotation
A docs guild is a small cross-team group with a rotating maintainer seat: this month, one named person triages doc issues, chases review SLAs, and owns the shared pages no service claims. It is the only model on this list that covers cross-cutting pages by design, and rotation spreads the knowledge of how the docs fit together.
It fails by decay. Rotations get skipped under delivery pressure, the seat quietly becomes the same volunteer every month, and when that volunteer burns out the guild exists only in the team topology slide. A guild survives when the seat is scheduled like an on-call rotation, in the same tool, with the same visibility, and when the maintainer's docs time is planned capacity rather than spare time.
Ownership is who the SLA points at
An owner without an obligation is a name in a column. The pair that works: every page carries an owner, and a documentation SLA defines what the owner answers for, review cadence, response time on reported errors, update-on-change. The audit that assigns owners in the first place is step two of the documentation audit checklist.
Architecture diagrams deserve a special mention because they cross every boundary this page has drawn: the platform diagram describes a dozen teams' services, so service-owner logic assigns it to nobody, and it decays faster than prose. Give it to the platform team explicitly, then shrink the obligation they carry: a diagram an agent can redraw from the repo through Datadef's MCP server turns update-on-change from an afternoon of drawing into one agent call. Datadef does not watch the repo, so the owner still owns the trigger; who should hold that duty is the subject of who owns architecture documentation.
Choosing in one line each
FAQ
Who should own documentation?
Does CODEOWNERS work for documentation?
What happens to documentation when its owner leaves?
Should a person or a team own each page?
Who should own the architecture diagram in a microservices org?