CW-301f · Module 1

Information Architecture for Technical Docs

3 min read

Technical documentation fails for one reason: the reader cannot find what they need. The content might be accurate, comprehensive, and well-written — but if it is organized by the author's mental model instead of the reader's task flow, the reader gives up and messages the Slack channel. Information architecture is the discipline of organizing documentation so that the reader's most common tasks require the fewest clicks.

The architecture has four tiers. Tier one: getting started. The reader is new and needs to accomplish their first task in under 10 minutes. Tier two: task reference. The reader knows the system and needs step-by-step instructions for a specific task. Tier three: concept guides. The reader needs to understand why something works the way it does. Tier four: API/reference. The reader needs exact parameters, return types, and error codes. Every piece of documentation belongs to exactly one tier. If a document tries to serve two tiers, it serves neither.

  1. 1. Map Reader Tasks List the 10 most common tasks your readers perform. These become the backbone of your navigation. "How do I authenticate?" "How do I create a resource?" "How do I handle errors?" Each task gets its own page.
  2. 2. Assign Documentation Tiers For each piece of documentation, assign it to exactly one tier: Getting Started, Task Reference, Concept Guide, or API Reference. If a document spans tiers, split it.
  3. 3. Validate Navigation Paths For each of the top 10 tasks, count the clicks from the documentation homepage to the answer. If any task requires more than 3 clicks, restructure the navigation.