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.

learning.journey.platform.track

Platform primitives tour track detail

  • Type: presentation (presentation)
  • Version: 1.0.0
  • File: packages/examples/learning-journey-platform-tour/src/presentations/index.ts
  • ```typescript

    import {

    field.key.label
    learning.journey.platform.track
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    learning.journey.platform.track
    field.description.label

    Platform primitives tour track detail

  • Type: presentation (presentation)
  • Version: 1.0.0
  • File: packages/examples/learning-journey-platform-tour/src/presentations/index.ts
  • ```typescript

    import {

    field.tags.label
    field.owners.label
    field.stability.label

    Platform primitives tour track detail

    Source Definition

    import {
    	definePresentation,
    	type PresentationSpecMeta,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { PlatformJourneyTrackModel } from '../operations';
    
    export const PlatformTourTrackPresentation = definePresentation({
    	meta: {
    		key: 'learning.journey.platform.track',
    		version: '1.0.0',
    		description: 'Platform primitives tour track detail',
    		...baseMeta,
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'LearningTrackDetail',
    		props: PlatformJourneyTrackModel,
    	},
    	targets: ['react', 'markdown', 'application/json'],
    });