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.list

List view of projects with status, tags, and last updated info

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

    List view of projects with status, tags, and last updated info

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

    List view of projects with status, tags, and last updated info

    Goal

    Browse and manage projects

    Context

    Project list page

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { ProjectModel } from './project.schema';
    
    export const ProjectListPresentation = definePresentation({
    	meta: {
    		key: 'saas.project.list',
    		version: '1.0.0',
    		title: 'Project List',
    		description:
    			'List view of projects with status, tags, and last updated info',
    		domain: 'saas-boilerplate',
    		owners: ['@saas-team'],
    		tags: ['project', 'list', 'dashboard'],
    		stability: StabilityEnum.Beta,
    		goal: 'Browse and manage projects',
    		context: 'Project list page',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'ProjectListView',
    		props: ProjectModel,
    	},
    	targets: ['react', 'markdown', 'application/json'],
    	policy: {
    		flags: ['saas.projects.enabled'],
    	},
    });