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

27 lines
392 B
TypeScript

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