5.1 The ADA Context

The ADA Context

This chapter illustrates

✓ The Alignment Thesis

Every method in this book was learned building one real system, under a real deadline, for a real problem. The problem is document accessibility. The engineering earned its keep only by clearing a bar the problem set, so the problem comes first — before agents, before loops. Why is making a document accessible a hard, mission-driven problem, and why was it worth a professor's Spring Break to attack it?

The system is called DocAble, live in beta at scholaccess.com. It takes a PowerPoint deck, a Word document, a spreadsheet, or a PDF and remediates it toward the accessibility standards a university now has to meet. Why that is worth doing at all is the rest of the story.

5.1.1 A noble idea with a crushing implementation

The Americans with Disabilities Act starts from a simple promise: people with disabilities should have equal access to public life, able to work, travel, study, vote, and use services without barriers society could reasonably remove. Passed in 1990 and signed by George H. W. Bush, the ADA descends from a long American line — the Constitution, the Reconstruction Amendments, the Civil Rights Act of 1964, each one widening the circle of who counts as fully included. The wheelchair ramp and the elevator are, of course, its famous results, and they are welcome. But the software problem grows out of a quieter corner of the statute.

That corner is Title II, which covers state and local governments — including K–12 schools and public universities. Title II says a public entity must communicate with people who have disabilities as effectively as it communicates with everyone else. In 1990 that sentence mostly meant buildings and lectures and office hours. In 2026 it means something else, because a public university no longer communicates only in person. It communicates through websites, PDFs, slide decks, Word documents, spreadsheets, learning-management systems, videos, forms, exams, syllabi, and the thousand little files that pile up wherever people are allowed to upload things.

If those materials cannot be read by a screen reader, cannot be navigated by keyboard, lack captions, lack alternative text, or carry their meaning only through color or layout, then some students get a worse version of the university than others. The hazard is live, and it is legal as well as moral: accessibility lawsuits are filed every year by students who were not reasonably accommodated, and institutions have settled them for sums ranging from the thousands into the millions.

5.1.2 The rule that changed the burden

Universities have been obligated to comply with Title II since 1990. For most of that time, they complied reactively. A student would hit an inaccessible document, request an accommodation, and the institution would scramble to respond. That process carries a morally awkward shape: the inaccessible artifact exists first, and the burden of discovering it and asking for a fix falls on the person the barrier has already excluded.

In 2024 the Department of Justice changed the shape. A final rule updated the Title II regulations for web content and mobile apps, and its premise was blunt. Public entities should not wait for people with disabilities to discover and report every barrier. The DOJ put it in the language of physical access: just as stairs can exclude a wheelchair user from a government building, inaccessible web content and documents can exclude people from government services. If a public entity provides a service through a website, an app, or the documents distributed through them, the accessibility of that content is part of the service. Just as Americans do not call ahead to check whether a building has a ramp, a student should not have to negotiate with a professor over whether the slides will be readable. Table 5.1-1 lays the shift out side by side.

Table 5.1-1. The 2024 DOJ rule shifted the accessibility burden from reactive accommodation to proactive access.
DimensionReactive accommodation (the old posture)Proactive access (the 2024 DOJ rule)
Who bears the burdenThe excluded student — discover the barrier, then ask for a fixThe institution — build access in before anyone is turned away
When access is createdAfter a barrier is hit, one accommodation at a timeBefore publication, as part of the service itself
What triggers the workAn accommodation requestPutting the document in front of students
The DOJ's own analogyCalling ahead to ask whether a building has a rampThe ramp is simply there
The standardAd hoc, case by caseWCAG 2.1 Level AA — with a compliance deadline
The scopeThe single artifact a student flaggedDecades of accumulated digital sediment

The rule set a technical standard — WCAG 2.1 Level AA — and, for large institutions, a deadline. Universities are not sitting on three PDFs and a cheerful little homepage. They are sitting on decades of accumulated digital sediment: course sites, admissions forms, scanned readings, lecture videos, and more. A deadline is a deadline, and this one landed on a mountain of files no one had ever been asked to climb.

5.1.3 What it costs to make one document accessible

Compliance carries a cost, and the cost is easiest to feel on a single deck. Open a PowerPoint slide deck — say, the "Syllabus Day" deck for a graduate course — and click the Accessibility tab in Microsoft PowerPoint. On a typical real deck it reports dozens of distinct problems: images missing alt text, slides missing titles, low-contrast text, tables without headers, a reading order the tool cannot verify. One real deck examined this way flagged 42 separate issues across its slides.

Addressing one issue takes a couple of minutes at best, and the denser the figure, the longer the fix. Scale that to a course. A professor maintains on the order of ~100 assignable documents for the courses they teach — slide decks plus readings in Word and PDF. At a conservative 3 hours per document, remediating a course's materials by hand runs to roughly 300 hours — about 7.5 full work weeks. At a professor's salary that is over $20,000 for the materials of a single teaching load, and a research professor teaches more than one course. Multiply by the thousands of courses at one institution and the number stops being a budget line and starts being a reason the whole thing gets quietly deferred. This per-course estimate is the cost model the book returns to; other figures reconcile to it.

There are escape hatches, and each one closes on inspection:

Put these together and you have a genuine problem — no one had to manufacture it. A federal mandate with real consequences, a mountain of heterogeneous files, expertise that only the busiest people possess, and no affordable path from here to there.

5.1.4 Why a document is not just a file

Underneath the institutional bind sits a technical problem deeper than it looks, and it is why this became a software project worth building rather than a policy memo worth writing. A document is not merely a file. It is a visual and semantic artifact. It carries text, figures, tables, diagrams, reading order, hierarchy, emphasis, and all the small tricks by which humans convey meaning to other humans. To make it accessible, a machine has to recover enough of that meaning to present it through another channel — to a screen reader, to a keyboard, to a student who cannot see the figure the lecturer drew.

For years that was out of reach. Earlier language models could not take an arbitrary slide and make enough sense of it to be trusted. The turn came with frontier vision-language models. Feed one a rendered slide and it looks at the image and recovers useful semantic content — describes the figure, reads the equation, names what the slide is trying to say. That is one of the core technical problems of document accessibility, and it is now solvable well enough to build on.

Raw model capability is not a compliance strategy, though, and this is the gap the engineering in this book had to fill. The model looks at a slide and understands something real. It understands nothing about university procurement, disability-resource workflows, faculty incentives, or the institutional alchemy that turns a federal mandate into a weekly email nobody reads. It is, as I like to put it, an infinite midwit: it knows everything and understands nothing. As the earlier chapters kept showing — a flash of capability is not a system; you get one only by bounding what you ask, typing what comes back, and validating before you believe. Turning that flash into a system a university can trust is engineering.

That is the context. A real law, a real deadline, a real cost, and a real technical gap that had just barely become bridgeable. The next chapter tells what happened when one professor decided to bridge it — and how a one-week undergraduate project became a production system built almost entirely by machines.

© James C. Davis, 2026–present