export const resultMongoSchema = { bsonType: "object", required: [ "_id", "sessionId", "status", "callLength", "date", "userAnswer", "systemSessionId", "clientId", ], properties: { _id: { bsonType: "objectId" }, sessionId: { bsonType: "string" }, status: { bsonType: "string" }, callLength: { bsonType: "string" }, date: { bsonType: "date" }, userAnswer: { bsonType: "string" }, recordingUrl: { bsonType: ["string", "null"] }, systemSessionId: { bsonType: "string" }, clientId: { bsonType: "string" }, }, additionalProperties: false, } as const;