OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Fetch onboarding progress for a specific track.
Goal
Display learner progress and remaining steps.
Context
Called when rendering a track detail or widget.
Source Definition
export const GetOnboardingProgressContract = defineQuery({
meta: {
key: 'learning.onboarding.getProgress',
version: '1.0.0',
stability: 'stable',
owners: [...LEARNING_JOURNEY_OWNERS],
tags: ['learning', 'onboarding', 'journey'],
description: 'Fetch onboarding progress for a specific track.',
goal: 'Display learner progress and remaining steps.',
context: 'Called when rendering a track detail or widget.',
},
io: {
input: GetOnboardingProgressInput,
output: OnboardingProgressModel,
},
policy: {
auth: 'user',
},
});