Fix interview response validation for expired interviews#114
Fix interview response validation for expired interviews#114nishi240931 wants to merge 5 commits into
Conversation
|
@nishi240931 what's the error can you share the screenshot and explain this more clearly |
This comment was marked as off-topic.
This comment was marked as off-topic.
|
@RITVIKKAMASETTY The issue was that
Because the response schema inherited from the create schema, the same validation was triggered when fetching existing interviews. As a result, once an interview started or its submission deadline passed, retrieving interview details could fail with errors such as To fix this, I introduced |


Summary
Fixed the issue where
CustomInterviewResponseinherited create-time validation fromCustomInterviewCreate, causing validation errors when retrieving interviews whose dates had already passed.Changes
CustomInterviewBaseto hold shared interview fieldsCustomInterviewCreateCustomInterviewResponseto inherit fromCustomInterviewBaseResult
Organizations can now fetch interview details even after the interview start time, end time, or submission deadline has passed.