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

20 lines
297 B
TypeScript

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