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 analytics dashboards
Goal
Show users available analytics dashboards.
Context
The main dashboard management view.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { DashboardModel } from './dashboard.schema';
export const DashboardsListPresentation = definePresentation({
meta: {
key: 'analytics.dashboard.viewList',
version: '1.0.0',
title: 'Dashboards List',
description: 'List of analytics dashboards',
domain: 'analytics',
owners: ['@analytics-dashboard'],
tags: ['analytics', 'dashboards', 'list'],
stability: StabilityEnum.Experimental,
goal: 'Show users available analytics dashboards.',
context: 'The main dashboard management view.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'DashboardsList',
props: DashboardModel,
},
targets: ['react', 'markdown', 'application/json'],
policy: {
flags: ['analytics.dashboards.enabled'],
},
});