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.

integration.fieldMapping.editor

Visual field mapping editor

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @integration-team
  • Tags: integration, field-mapping, editor
  • File: packages/examples/integration-hub/src/sync/sync.presentation.ts
  • field.key.label
    integration.fieldMapping.editor
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    integration.fieldMapping.editor
    field.description.label

    Visual field mapping editor

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @integration-team
  • Tags: integration, field-mapping, editor
  • File: packages/examples/integration-hub/src/sync/sync.presentation.ts
  • field.tags.label
    integration,field-mapping,editor
    field.owners.label
    @integration-team
    field.stability.label

    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'],
    	},
    });