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.assets.list

List of assets with valuations

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

    List of assets with valuations

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

    List of assets with valuations

    Goal

    List assets

    Context

    Overview

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    
    export const AssetsListPresentation = definePresentation({
    	meta: {
    		key: 'wealth-snapshot.assets.list',
    		version: '1.0.0',
    		title: 'Assets List',
    		description: 'List of assets with valuations',
    		domain: 'finance',
    		owners: ['@wealth-snapshot'],
    		tags: ['finance', 'assets', 'list'],
    		stability: StabilityEnum.Experimental,
    		goal: 'List assets',
    		context: 'Overview',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'AssetsList',
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['wealth.assets.enabled'],
    	},
    });