Curriculum backup
Platform administrators and curriculum designers can download a curriculum dump — a zip of JSON files containing study plans, tracks, quizzes, outcomes, rubric dimensions, track tags, and study suggestions.
Learner data (studies, notes, quiz attempts) is not included. This is a catalog backup, not a database dump.
Download
Section titled “Download”- Open Administration → Curriculum → Backup & import (
/admin/curriculum/backup). - Choose Download zip.
Designers can download backups from production for reference or to share with another admin.
Import (platform administrators)
Section titled “Import (platform administrators)”Import replaces or adds catalog rows by slug, so template UUIDs stay stable when you load production content into a seeded local database.
- Upload the zip from production (or another environment).
- Optionally enable Remove catalog rows not in the archive to prune extras (the track skip-noop plan is always kept).
- Click Preview import and review create/update/delete counts.
- Click Apply import.
Import bypasses the editorial review queue — use it only when you trust the archive source.
Command line
Section titled “Command line”From the API container (repo root):
docker compose -f compose.dev.yml run --rm --no-deps api php artisan curriculum:export /tmp/curriculum.zipdocker compose -f compose.dev.yml run --rm --no-deps api php artisan curriculum:import /tmp/curriculum.zip --dry-rundocker compose -f compose.dev.yml run --rm --no-deps api php artisan curriculum:import /tmp/curriculum.zipOutside local / testing, curriculum:import requires --force.
Format
Section titled “Format”Archive layout (garrison.curriculum.v1):
manifest.json— format version and countslearning-outcomes/{slug}.jsonloop-mappings/{slug}.jsonquizzes/{slug}.jsonstudy-plans/{slug}.jsontracks/{slug}.jsontrack-tags/{slug}.jsonrubric/{slug}.jsonstudy-suggestions.json
Cross-references use slugs (for example quiz steps store quizSlug, guided suggestions store a plan slug in focus).
Planning detail: Study Plans — Curriculum dump.