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.transcripts.get

Fetch the transcript for a specific meeting recording.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: meeting-recorder, transcripts
  • field.key.label
    meeting-recorder.transcripts.get
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    meeting-recorder.transcripts.get
    field.description.label

    Fetch the transcript for a specific meeting recording.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: meeting-recorder, transcripts
  • field.tags.label
    meeting-recorder,transcripts
    field.owners.label
    @platform.integrations
    field.stability.label
    experimental

    Fetch the transcript for a specific meeting recording.

    Goal

    Expose meeting transcripts for downstream knowledge and analytics flows.

    Context

    Used by agents and dashboards to access the transcript for a selected meeting.

    Source Definition

    import {
    	type AnyOperationSpec,
    	defineCommand,
    	defineQuery,
    } from '@lssm-tech/lib.contracts-spec/operations';
    import type { OperationSpecRegistry } from '@lssm-tech/lib.contracts-spec/operations/registry';
    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { MeetingTranscriptRecord } from '../models';
    import { MEETING_RECORDER_TELEMETRY_EVENTS } from '../telemetry';
    
    export const MeetingRecorderGetTranscript = defineQuery({
    	meta: {
    		key: 'meeting-recorder.transcripts.get',
    		version: '1.0.0',
    		description: 'Fetch the transcript for a specific meeting recording.',
    		goal: 'Expose meeting transcripts for downstream knowledge and analytics flows.',
    		context:
    			'Used by agents and dashboards to access the transcript for a selected meeting.',
    		owners: ['@platform.integrations'],
    		tags: ['meeting-recorder', 'transcripts'],
    		stability: 'experimental',
    	},
    	io: {
    		input: MeetingRecorderGetTranscriptInput,
    		output: MeetingTranscriptRecord,
    	},
    	policy: {
    		auth: 'user',
    	},
    });