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