mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
20 lines
297 B
TypeScript
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;
|