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 financial accounts
Goal
List accounts
Context
Overview
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const AccountsListPresentation = definePresentation({
meta: {
key: 'wealth-snapshot.accounts.list',
version: '1.0.0',
title: 'Accounts List',
description: 'List of financial accounts',
domain: 'finance',
owners: ['@wealth-snapshot'],
tags: ['finance', 'accounts', 'list'],
stability: StabilityEnum.Experimental,
goal: 'List accounts',
context: 'Overview',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'AccountsList',
},
targets: ['react', 'markdown'],
policy: {
flags: ['wealth.accounts.enabled'],
},
});