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