Md Nazrul Islam

Results 87 comments of Md Nazrul Islam

I don’t know if the issue is still unresolved! I had a similar issue (FastAPI + uvicorn worker + gunicorn + supervisor). Gunicorn was unable to stop workers and I...

Thanks a lot for your amazing work! The major issue, I see the same class is used for three types of data. Date, DateTime, Instant. It is literally possible to...

First of all, welcome to arena of FHIR. Anyway if you look at the cardinality, it states 0..*. This means line variable could occur zero time (optional) or multiple times....

It completely depends on the use case, If you look https://www.hl7.org/fhir/valueset-address-use.html and https://www.hl7.org/fhir/valueset-address-type.html One person could have work and home together and also an Organization could have separate postal and...

As far as I see `""` in the line list, which not a valid string according to FHIR Specification, that's why you are getting validation error.

One easy solution could be to patch (depends on which fhir version you are using) https://github.com/nazrulworld/fhir.resources/blob/main/fhir/resources/fhirtypes.py#L99 class String. regex = re.compile(r".*")

But maybe in the future, we could make the constraint configurable for String type like https://github.com/nazrulworld/fhir.resources/blob/main/fhir/resources/fhirtypes.py#L170 Id

@alysivji if you follow the referenced commit, now String type is configurable! ``` from fhir.resources.fhirtypes import String String.configure_empty_str(allow=True) ```

Hi, @gitpushdashf thanks for your interest in this project. Can you please add the problem with the details, perhaps with an example? //I tried Resource, but it doesn't seem to...

Hi @joofio That is a really good idea to move on. As it is possible to inject a validator, so profile validator could be easily coupled/decoupled.