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

pydantic discriminator issue introduced with pydantic 2.9.0 #76

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

[0.2.2] - Unreleased
--------------------

Fixed
^^^^^
- :class:`~scim2_models.ListResponse` pydantic discriminator issue introduced with pydantic 2.9.0. #75

[0.2.1] - 2024-09-06
--------------------

Expand Down
10 changes: 7 additions & 3 deletions scim2_models/rfc7644/list_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,18 @@ def get_schema_from_payload(payload: Any) -> Optional[str]:
if not payload:
return None

payload_schemas = (
payload.get("schemas", [])
if isinstance(payload, dict)
else getattr(payload, "schemas")
)

resource_types_schemas = [
resource_type.model_fields["schemas"].default[0]
for resource_type in resource_types
]
common_schemas = [
schema
for schema in payload.get("schemas", [])
if schema in resource_types_schemas
schema for schema in payload_schemas if schema in resource_types_schemas
]
return common_schemas[0] if common_schemas else None

Expand Down
Loading