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