References: Graph Validation and Quality Assurance
-
JSON Schema - JSON Schema Organization - The official guide to JSON Schema validation, the mechanism this chapter's Schema Validation section applies to
learning-graph.jsonagainstlearning-graph-schema.json. -
Referential integrity - Wikipedia - Defines referential integrity in database systems, the same principle this chapter's Referential Integrity section applies to dependency-edge ConceptID references.
-
Record linkage - Wikipedia - Covers techniques for identifying records that refer to the same real-world entity, background for this chapter's Duplicate Concept Detection section.
-
Data validation - Wikipedia - Surveys general data-validation principles, the umbrella discipline this chapter's Automated Validator, Validation Warning, and Validation Error sections apply specifically to learning graphs.
-
Completeness (knowledge bases) - Wikipedia - Discusses completeness assumptions in structured knowledge bases, conceptually relevant to this chapter's Graph Completeness section.
-
Instructional design - Wikipedia - Covers principles of educationally sound sequencing, the discipline this chapter's Pedagogical Coherence section draws on to distinguish mathematically valid from pedagogically sound ordering.
-
Software quality - Wikipedia - Frames the general distinction between automatable and judgment-based quality checks, background for this chapter's split between fully automated checks and Pedagogical Coherence / Dependency Plausibility.
-
Static program analysis - Wikipedia - Explains how automated tools check code for defects without execution, an analogous pattern to this chapter's Automated Validator running fixed checks against a graph dataset.
-
Best practices for Claude Code - Anthropic - Describes giving an agent a verifiable, automatable check paired with human review for judgment calls, the pattern this chapter's split between automated validation and Pedagogical Coherence review directly follows.
-
Introduction to Algorithms (4th Edition) - Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, Clifford Stein - MIT Press - Covers graph-validation algorithms (cycle detection, connectivity) referenced throughout this chapter's automated-check sections and their relationship to Chapter 5's structural validators.