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.
Payout detail with breakdown
Goal
Show the breakdown of a specific payout including fees and orders.
Context
Accessed from the payout list.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { PayoutModel } from './payout.schema';
export const PayoutDetailPresentation = definePresentation({
meta: {
key: 'marketplace.payout.detail',
version: '1.0.0',
title: 'Payout Details',
description: 'Payout detail with breakdown',
domain: 'marketplace',
owners: ['@marketplace-team'],
tags: ['marketplace', 'payout', 'detail'],
stability: StabilityEnum.Experimental,
goal: 'Show the breakdown of a specific payout including fees and orders.',
context: 'Accessed from the payout list.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'PayoutDetail',
props: PayoutModel,
},
targets: ['react', 'markdown'],
policy: {
flags: ['marketplace.payouts.enabled'],
},
});