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