Eugen Vasilian
Eugen Vasilian
@mcollina It seems that the use of oneOf in response is the problem. If I use only one validation it works. Also other endpoints that have simple response validations work...
@mcollina I have further found this: I used only two items in oneOf that have a common field called "Session". As a result the response contains only the "Session" field....
> Thanks for the investigation. But we need a repro to confirm if it is a bug or expected behavior. > > For `serialization`, `oneOf` actually do the same job...
@climba03003 My first schema is ``` export const mfaLoginResponseJsonSchema = S.object() .id('MFALoginResponse') .prop('ChallengeName', S.string()) .prop('Session', S.string()) ``` And when I looked into code it seems that if the first schema...
What is the status with this one?