mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
25 lines
378 B
TypeScript
25 lines
378 B
TypeScript
export const $Participant = {
|
|
properties: {
|
|
id: {
|
|
type: "string",
|
|
isRequired: true,
|
|
},
|
|
speaker: {
|
|
type: "any-of",
|
|
contains: [
|
|
{
|
|
type: "number",
|
|
},
|
|
{
|
|
type: "null",
|
|
},
|
|
],
|
|
isRequired: true,
|
|
},
|
|
name: {
|
|
type: "string",
|
|
isRequired: true,
|
|
},
|
|
},
|
|
} as const;
|