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.

saas.project.detail

Detailed view of a project with settings and activity

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @saas-team
  • Tags: project, detail
  • File: packages/examples/saas-boilerplate/src/project/project.presentation.ts
  • field.key.label
    saas.project.detail
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    saas.project.detail
    field.description.label

    Detailed view of a project with settings and activity

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @saas-team
  • Tags: project, detail
  • File: packages/examples/saas-boilerplate/src/project/project.presentation.ts
  • field.tags.label
    project,detail
    field.owners.label
    @saas-team
    field.stability.label

    Detailed view of a project with settings and activity

    Goal

    View and edit project details

    Context

    Project detail page

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { ProjectModel } from './project.schema';
    
    export const ProjectDetailPresentation = definePresentation({
    	meta: {
    		key: 'saas.project.detail',
    		version: '1.0.0',
    		title: 'Project Details',
    		description: 'Detailed view of a project with settings and activity',
    		domain: 'saas-boilerplate',
    		owners: ['@saas-team'],
    		tags: ['project', 'detail'],
    		stability: StabilityEnum.Beta,
    		goal: 'View and edit project details',
    		context: 'Project detail page',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'ProjectDetailView',
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['saas.projects.enabled'],
    	},
    });