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