ContractSpec docs

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.

meeting-recorder-providers

Meeting recorder provider integration with transcripts and webhook handling

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples
  • Tags: meeting, recorder, transcripts, webhooks
  • field.key.label
    meeting-recorder-providers
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    meeting-recorder-providers
    field.description.label

    Meeting recorder provider integration with transcripts and webhook handling

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples
  • Tags: meeting, recorder, transcripts, webhooks
  • field.tags.label
    meeting,recorder,transcripts,webhooks
    field.owners.label
    @examples
    field.stability.label
    experimental

    Meeting recorder provider integration with transcripts and webhook handling

    Source Definition

    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    
    export const MeetingRecorderProvidersFeature = defineFeature({
    	meta: {
    		key: 'meeting-recorder-providers',
    		version: '1.0.0',
    		title: 'Meeting Recorder Providers',
    		description:
    			'Meeting recorder provider integration with transcripts and webhook handling',
    		domain: 'integration',
    		owners: ['@examples'],
    		tags: ['meeting', 'recorder', 'transcripts', 'webhooks'],
    		stability: 'experimental',
    	},
    
    	integrations: [
    		{ key: 'meeting-recorder.integration.provider', version: '1.0.0' },
    	],
    
    	docs: [
    		'docs.examples.meeting-recorder-providers',
    		'docs.examples.meeting-recorder-providers.usage',
    	],
    });