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.

wealth-snapshot.dashboard

Wealth snapshot dashboard with net worth overview

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @wealth-snapshot
  • Tags: finance, wealth, dashboard
  • File: packages/examples/wealth-snapshot/src/presentations.ts
  • field.key.label
    wealth-snapshot.dashboard
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    wealth-snapshot.dashboard
    field.description.label

    Wealth snapshot dashboard with net worth overview

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @wealth-snapshot
  • Tags: finance, wealth, dashboard
  • File: packages/examples/wealth-snapshot/src/presentations.ts
  • field.tags.label
    finance,wealth,dashboard
    field.owners.label
    @wealth-snapshot
    field.stability.label

    Wealth snapshot dashboard with net worth overview

    Goal

    Overview of wealth

    Context

    Dashboard

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    
    export const WealthDashboardPresentation = definePresentation({
    	meta: {
    		key: 'wealth-snapshot.dashboard',
    		version: '1.0.0',
    		title: 'Wealth Dashboard',
    		description: 'Wealth snapshot dashboard with net worth overview',
    		domain: 'finance',
    		owners: ['@wealth-snapshot'],
    		tags: ['finance', 'wealth', 'dashboard'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Overview of wealth',
    		context: 'Dashboard',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'WealthDashboard',
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['wealth.dashboard.enabled'],
    	},
    });