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

Retrieve metadata for a single meeting recording.

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

    Retrieve metadata for a single meeting recording.

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

    Retrieve metadata for a single meeting recording.

    Goal

    Allow downstream experiences to display detailed meeting metadata.

    Context

    Used when drilling into a specific meeting from a transcript or integration dashboard.

    Source Definition

    import {
    	type AnyOperationSpec,
    	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 { MeetingRecord } from '../models';
    
    export const MeetingRecorderGetMeeting = defineQuery({
    	meta: {
    		key: 'meeting-recorder.meetings.get',
    		version: '1.0.0',
    		description: 'Retrieve metadata for a single meeting recording.',
    		goal: 'Allow downstream experiences to display detailed meeting metadata.',
    		context:
    			'Used when drilling into a specific meeting from a transcript or integration dashboard.',
    		owners: ['@platform.integrations'],
    		tags: ['meeting-recorder', 'meetings'],
    		stability: 'experimental',
    	},
    	io: {
    		input: MeetingRecorderGetMeetingInput,
    		output: MeetingRecord,
    	},
    	policy: {
    		auth: 'user',
    	},
    });