An interactive web application for exploring and comparing educational and credentialing data standards including specifications from 1EdTech, Credential Engine, HR Open, and CEDS.
Collaborative effort by Brandon Dorman, Kevin Feyen and others! please reach out to [email protected] with questions or inaccuracies; I usually tried to upload the exact specification document and have manually checked it and examples are often directly from the interoperability specification's repo's. For specs like CASE/CTDL I don't show an exhaustive list of association types but for CASE 1.1 for example showed the new translation type because it's novel.
- Browse 9 major specifications across 4 organizations
- View detailed schemas, examples, diagrams, and terminology
- Explore entity relationships and data structures
- Access official specification documentation
- Compare any two specifications side-by-side
- Analyze structural similarities and differences
- Identify vocabulary overlap and unique terms
- Discover interoperability opportunities
- Get AI-generated insights on how specifications relate
- CLR 2.0 (Comprehensive Learner Record)
- CASE 1.0 & 1.1 (Competency and Academic Standards Exchange)
- Open Badges 3.0
- CTDL (Credential Transparency Description Language)
- LER-RS 2.0 (Learning & Employment Record Reference Specification)
- Skills API 1.0
- JEDX Organizations 1.0 (Jobs Exchange Organizations API)
- CEDS 12.1 (Common Education Data Standards)
- Node.js 18+ and npm
- Install dependencies:
npm install- Configure your OpenAI API key in
.env:
VITE_OPENAI_API_KEY=your_openai_api_key_here- Start the development server:
npm run dev- Build for production:
npm run build- Click the "Compare" button in the header
- Select two specifications from the dropdown menus
- Click "Compare Specifications"
- The AI will analyze both specifications and provide:
- Structural Similarities: Common architectural patterns
- Structural Differences: Key design differences
- Vocabulary Overlap: Shared terms and concepts
- Unique Vocabulary: Terms specific to each specification
- Use Case Similarities: Common application scenarios
- Interoperability Notes: How the specifications can work together
- React 18 + TypeScript
- Vite
- Tailwind CSS
- Lucide React (icons)
- OpenAI GPT-4 (comparison analysis)
- Mermaid (diagram rendering)
src/
├── components/ # UI components
│ ├── ComparisonView.tsx # NEW: Comparison interface
│ ├── DiagramViewer.tsx
│ ├── ExampleViewer.tsx
│ ├── SchemaViewer.tsx
│ └── TermsList.tsx
├── services/ # Business logic
│ └── comparisonService.ts # NEW: OpenAI integration
├── data/ # Specification data
│ ├── specifications.ts
│ └── openapi.yaml
├── types/ # TypeScript types
│ └── specification.ts
└── App.tsx # Main application
- The comparison feature requires an OpenAI API key
- Comparisons use GPT-4 Turbo for detailed technical analysis
- API calls are made client-side (ensure your API key has appropriate rate limits)
- All specification data is embedded in the application for offline browsing