Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

追加: SkipJsonSchemaが要らないモデルの値からSkipJsonSchemaを省いていく #1462

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Hiroshiba
Copy link
Member

@Hiroshiba Hiroshiba commented Aug 18, 2024

内容

SkipJsonSchemaが要らないモデルの値からSkipJsonSchemaを省いていきます。
これによってはサードパーティ側のバグになりえる型が出なくなるはず。

例えばint | SkipJsonSchema[None] = default(None)の場合、

  • キーがない
  • もしくはキーがあって値がint

という意味になるのですが、実際に入る値は

  • キーがない
  • もしくはキーがあって値がint
  • もしくはキーがあって値がNone

だったので、返ってくるモデルの値にキーがあって値がNoneが入ってることがわからないようになってました。

これをint | None = default(None)にすることで、実際の値と型をあわせました。

関連 Issue

close #1458

その他

ちなみにSkipJsonSchemaを付けていたのはpydantic v1→v2アプデのときにモデルの型を一応変えないようにしたため。
詳細は

@Hiroshiba Hiroshiba requested a review from a team as a code owner August 18, 2024 14:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Pydantic v2やSkipJsonSchema周りを整理する
1 participant