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.
List of quotes with status
Goal
Track and manage quotes
Context
Quote management
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const QuoteListPresentation = definePresentation({
meta: {
key: 'service-business-os.quote.list',
version: '1.0.0',
title: 'Quote List',
description: 'List of quotes with status',
domain: 'services',
owners: ['@service-os'],
tags: ['services', 'quotes', 'list'],
stability: StabilityEnum.Experimental,
goal: 'Track and manage quotes',
context: 'Quote management',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'QuoteList',
},
targets: ['react', 'markdown'],
policy: {
flags: ['service.quotes.enabled'],
},
});