Files
reflector/www/app/api/schemas/$TranscriptParticipant.ts

24 lines
364 B
TypeScript

export const $TranscriptParticipant = {
properties: {
id: {
type: "string",
},
speaker: {
type: "any-of",
contains: [
{
type: "number",
},
{
type: "null",
},
],
isRequired: true,
},
name: {
type: "string",
isRequired: true,
},
},
} as const;