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