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.
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'],
},
});