fix(pydantic): fix pydantic JSON schema generation for FastAPI/OpenAPI#84
Merged
akhundMurad merged 1 commit intoakhundMurad:mainfrom Jan 28, 2026
Merged
Conversation
akhundMurad
approved these changes
Jan 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This resolves #83
When using
TypeIDFieldin Pydantic models with FastAPI, accessing the/openapi.jsonendpoint or Swagger UI (/docs) would fail with:At first this appeared to be caused by a bug when calling
model_json_schema()on models. The first fix involved adding a missingjson_schema_input_schemaparameter to theno_info_plain_validator_functioncall in__get_pydantic_core_schema__. This resolved the error when callingmodel_json_schema()directly, but the swagger docs still wouldn't generate when using in FastAPI.The second issue was that the
__get_pydantic_json_schema__method passed the entire validator function schema to the handler instead of just thejson_schema_input_schema. Adding this fix resolved the FastAPI OpenAPI spec generation.I also added two tests, one for each of these fixes.
As a side note, I just noticed when opening the PR that my auto-formatting config resorted your imports in the test file. Sorry for not noticing that before committing. I can revert if needed.