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.
Form to approve or reject a KB change candidate.
Goal
Review
Context
Detail
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { ChangeCandidateModel, ReviewTaskModel } from './entities/models';
export const KbReviewFormPresentation = definePresentation({
meta: {
key: 'kb.review.form',
version: '1.0.0',
title: 'Review Change',
description: 'Form to approve or reject a KB change candidate.',
domain: 'knowledge',
owners: ['@examples'],
tags: ['form', 'review'],
stability: StabilityEnum.Experimental,
goal: 'Review',
context: 'Detail',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'ReviewDecisionForm',
props: ReviewTaskModel,
},
targets: ['react'],
});