Pascal Pfiffner
Pascal Pfiffner
The DSTU-2 sandbox is now here: https://sb-fhir-dstu2.smarthealthit.org/api/smartdstu2/open/
Yes sure! What would you like to see in there? I often use `as_json()` but am guessing it's overkill to add that to the repr.
This is by design: the `strict=False` skips validation during initialization. The instance does not remember this state, you have to use `try-except` when using `as_json()`.
It's not currently possible to create invalid JSON with `as_json()`. Could consider extending that method with a `strict=True` argument and not raising if strict is `False` towards the end of...
Yes, this is a known issue. The "native" selector asks for a list of all patients, which I know Epic does not provide unless at least basic search criteria are...
With which version of the framework (`master` or `develop` branch?) was this, and against which server?
Can you reproduce with the **SoF-Demo** sample app?
This is a current limitation since we map native Python types to many FHIR primitives, in this case [we use float for Decimal](https://github.com/smart-on-fhir/client-py/blob/master/fhirclient/models/questionnaireresponse.py#L229). In an update we want to also...
Interesting. There is a word-wrap workaround [implemented here](https://github.com/smart-on-fhir/fhir-parser/blob/7c5144dbf48d8eb9ad4009fe12d1bc94916826c7/fhirrenderer.py#L202), can you play around with that code and see if the issue resides there?
References in the form `resourceType/id` are relative references, meaning they reference resources that live on the same server. So, in order to resolve them, you need to know which server...