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.

service-business-os.job.board

Job board with kanban view

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @service-os
  • Tags: services, jobs, board, kanban
  • File: packages/examples/service-business-os/src/presentations.ts
  • field.key.label
    service-business-os.job.board
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    service-business-os.job.board
    field.description.label

    Job board with kanban view

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @service-os
  • Tags: services, jobs, board, kanban
  • File: packages/examples/service-business-os/src/presentations.ts
  • field.tags.label
    services,jobs,board,kanban
    field.owners.label
    @service-os
    field.stability.label

    Job board with kanban view

    Goal

    Visual job management

    Context

    Field service scheduling

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    
    export const JobBoardPresentation = definePresentation({
    	meta: {
    		key: 'service-business-os.job.board',
    		version: '1.0.0',
    		title: 'Job Board',
    		description: 'Job board with kanban view',
    		domain: 'services',
    		owners: ['@service-os'],
    		tags: ['services', 'jobs', 'board', 'kanban'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Visual job management',
    		context: 'Field service scheduling',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'JobBoard',
    	},
    	targets: ['react'],
    	policy: {
    		flags: ['service.jobs.enabled'],
    	},
    });