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.quote.detail

Quote detail with line items

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

    Quote detail with line items

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

    Quote detail with line items

    Goal

    View and edit quote details

    Context

    Quote inspection

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    
    export const QuoteDetailPresentation = definePresentation({
    	meta: {
    		key: 'service-business-os.quote.detail',
    		version: '1.0.0',
    		title: 'Quote Details',
    		description: 'Quote detail with line items',
    		domain: 'services',
    		owners: ['@service-os'],
    		tags: ['services', 'quote', 'detail'],
    		stability: StabilityEnum.Experimental,
    		goal: 'View and edit quote details',
    		context: 'Quote inspection',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'QuoteDetail',
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['service.quotes.enabled'],
    	},
    });