Hi all,
I have setup the smart-installer. Is there any patient with all the FHIR data such as allergies, immunizations, Family History, Documents etc?
--
You received this message because you are subscribed to the Google Groups "SMART on FHIR" group.
To unsubscribe from this group and stop receiving emails from it, send an email to smart-on-fhi...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "SMART on FHIR" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/smart-on-fhir/Q97VvKGqNtQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to smart-on-fhi...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
--
curl -u client:secret 'http://localhost:3000/?' -H 'Content-Type: application/json' --data-binary @my-app.json
I get an xml error message back:
<OperationOutcome xmlns="http://hl7.org/fhir">
<issue>
<severity value="error"/>
</issue>
</OperationOutcome>
--
{
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "error",
"details": {
"text": "Cannot cast object 'value=\"1\"' with class 'org.apache.xerces.dom.DeferredAttrNSImpl' to class 'float'"
}
}
]
}
The data I'm trying to add looks as follows:
"vaccinationProtocol": [
{
"doseSequence": "1",
"series": "Havrix",
"seriesDoses": "2"
}
]
Thanks for the report, Paul. This is a bug in our server, specifically in the search indexing process, which we intend to fix. It is in our issues list (https://github.com/smart-on-fhir/api-server/issues/27)
Best,
Josh
--