diff --git a/backend/src/index.ts b/backend/src/index.ts index 5d00344395f8ea03827afe83796db2bcd0184eb6..a98b858282000dd65d2bfbd8554792b4e49bd773 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -55,19 +55,19 @@ server.route({ //=[ CheckTranscription ]======================================================= const CheckTranscriptionBodySchema = { + type: "object", + properties: { + deltaTime: { type: "number" }, + refData: { type: "object", properties: { - deltaTime: { type: "number" }, - refData: { - type: "object", - properties: { - id: { type: "number" }, - image: { type: "string" }, - }, - required: ["id", "image"], - }, - transcription: { type: "string" }, + id: { type: "number" }, + image: { type: "string" }, }, + required: ["id", "image"], + }, + transcription: { type: "string" }, + }, required: ["deltaTime", "refData", "transcription"], } as const;