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.
Visual field mapping editor
Goal
Allow users to map source fields to target fields visually.
Context
Schema mapping tool for data consistency.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import {
FieldMappingModel,
SyncConfigModel,
SyncRunModel,
} from './sync.schema';
export const FieldMappingEditorPresentation = definePresentation({
meta: {
key: 'integration.fieldMapping.editor',
version: '1.0.0',
title: 'Field Mapping Editor',
description: 'Visual field mapping editor',
domain: 'integration',
owners: ['@integration-team'],
tags: ['integration', 'field-mapping', 'editor'],
stability: StabilityEnum.Experimental,
goal: 'Allow users to map source fields to target fields visually.',
context: 'Schema mapping tool for data consistency.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'FieldMappingEditor',
props: FieldMappingModel,
},
targets: ['react'],
policy: {
flags: ['integration.sync.enabled'],
},
});