Eva Valentine
Results
1
issues of
Eva Valentine
Version: 8.0 Python: 3.12.7 FHIR: R4B I have an observation with effectivePeriod ``` "effectivePeriod":{"end":"2025-03-07"} ``` ```python from fhir.resources.R4B.observation import Observation data = "observation json" obs = Observation.model_validate_json(data) print(obs.effectivePeriod.end) type(obs.effectivePeriod.end) ```...