UNIT 18: Federal Indian Policy Series
From 1968 to 1994, Congress passed more legislation protecting Tribal sovereignty than in any era since the treaty period. Tribes won legal fights that still hold today. This unit, you research the Self-Determination Era.
The Termination Era ended not with a single law but with a shift in conditions. AIM's founding in Minneapolis in 1968, the Alcatraz occupation, the Trail of Broken Treaties - activism created political pressure that forced federal policy to change. What followed was the most productive legislative era for Tribal sovereignty since 1871.
ISDEAA gave Tribes the right to contract federal programs and run them themselves. ICWA protected Native children in child welfare proceedings. NAGPRA required the return of ancestral remains from museums. These aren't just laws - they're the legal infrastructure Tribes use every day.
In this unit, you'll build a research website about the Self-Determination Era. The new CSS pattern is a filterable card grid - buttons that let readers sort legislation by decade. You'll also learn about McGirt v. Oklahoma (2020), which shows that the legal fights from this era are still being won.
A research website about the Self-Determination Era (1968-1994) - six sections, Prussian blue archival design.
A filterable grid of key laws by decade. Nation profiles. Court cases. A section showing how this era connects to Indian Country today. Your research in your own words.
This era is why Tribal nations have the legal tools they use today. Your website explains how they got them.
The legal victories in this era are still being enforced. This is recent history - and it's still unfolding.
Your learning path
The historical content in this unit draws from federal primary sources, Supreme Court opinions, peer-reviewed scholarship, and Tribal nation records. The legislative history of the Self-Determination Era is extensively documented: every major law cited in this unit is available through the National Archives and the Library of Congress. The court case summaries draw directly from published Supreme Court and federal district court opinions. The Mille Lacs Band v. Minnesota narrative is drawn from the district court's 1994 findings and the Supreme Court's 1999 opinion in Minnesota v. Mille Lacs Band of Chippewa Indians, 526 U.S. 172 (1999).
Primary Legislative & Government Sources
Court Cases
Academic & Scholarly Sources
Tribal Nation & Community Sources
Student Research Resources
This unit aligns with computer science, social studies, and Indigenous education standards across MN, ND, and SD. Click a panel to expand.
data-category attribute and each button with a data-filter attribute; the CSS, which sets initial display states and active button styles; and the JavaScript, which listens for button clicks, reads the selected filter, and iterates through cards to show or hide them. Students who build each layer understand why the filter does not work if any one part is missing. That dependency structure is what decomposition practice is building toward.)data-category value is a real-world debugging scenario students should encounter and resolve. Testing across all combinations is the systematic approach.)forEach loop pattern from Unit 10 and the data-* attribute reading from the modal in Unit 10. Students are not encountering these tools for the first time; they are applying them in a new context with a different interaction pattern. The development process here is: understand the data structure, write the HTML, write the JavaScript, test each filter case, refine.)data attributes from Unit 10, forEach loops from Unit 10, and style.display toggling from Unit 9. The new element is filter state: tracking which category is currently active, updating the active button's visual state, and applying the filter to every card on each click. The state management pattern is the new concept; everything else is review.)