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
Thank you for the quick response on #7, here is another typing issue.
It seems like the upstream fern/fhir has BaseResource.contained defined correctly as a nullable list of ResourceList
contained:
docs: These resources do not have an independent existence apart from the
resource that contains them - they cannot be identified independently, and
nor can they have their own independent transaction scope.
type: optional<list<ResourceList>>
contained: typing.Any = pydantic.Field(
description="These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope."
)
The text was updated successfully, but these errors were encountered:
Thank you for the quick response on #7, here is another typing issue.
It seems like the upstream fern/fhir has
BaseResource.contained
defined correctly as a nullable list of ResourceListmetriport-python seems to have it as
Any
and no defaultThe text was updated successfully, but these errors were encountered: