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 a workflow definition with steps
Goal
Viewing technical details of a workflow definition
Context
Workflow inspection and debugging
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { ApprovalRequestModel } from '../approval/approval.schema';
import { WorkflowInstanceModel } from '../instance/instance.schema';
import { WorkflowDefinitionModel } from '../workflow/workflow.schema';
export const WorkflowDetailPresentation = definePresentation({
meta: {
key: 'workflow.definition.detail',
version: '1.0.0',
title: 'Workflow Details',
description: 'Detailed view of a workflow definition with steps',
domain: 'workflow-system',
owners: ['@workflow-team'],
tags: ['workflow', 'detail'],
stability: StabilityEnum.Experimental,
goal: 'Viewing technical details of a workflow definition',
context: 'Workflow inspection and debugging',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'WorkflowDefinitionDetail',
props: WorkflowDefinitionModel,
},
targets: ['react', 'markdown'],
policy: {
flags: ['workflow.enabled'],
},
});