You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New Feature - add an ability to maintain separate schemas for request and response models, similar to FastAPI's implementation.
Current Behavior
Currently, parse_parameters overwrites component schemas (APIView.components_schemas) that were previously extracted by get_responses.
Usually get_responses returns different schemas due tomode="serialization" and we're loosing any additional information (such as @computed_fields)
Proposed Solution
I could add a new configuration option separate_input_output_schemas:
Defaults to false to maintain backward compatibility