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.
Detailed view of an integration
Goal
Show capabilities and documentation for a specific integration.
Context
Integration showcase and support page.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { IntegrationModel } from './integration.schema';
export const IntegrationDetailPresentation = definePresentation({
meta: {
key: 'integration.detail',
version: '1.0.0',
title: 'Integration Details',
description: 'Detailed view of an integration',
domain: 'integration',
owners: ['@integration-team'],
tags: ['integration', 'detail'],
stability: StabilityEnum.Experimental,
goal: 'Show capabilities and documentation for a specific integration.',
context: 'Integration showcase and support page.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'IntegrationDetail',
props: IntegrationModel,
},
targets: ['react', 'markdown'],
policy: {
flags: ['integration.enabled'],
},
});