Stream: implementers
Topic: Valueset Issue
Krishna Moorthi (Jul 12 2019 at 14:15):
Hi all , I am getting an error when i try to validate observation resource against FHIR server. any suggestions would be greatly appreciated. {
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "error",
"code": "processing",
"diagnostics": "ValueSet-expand valueset={id=[66846b28-6363-4707-bdaf-4c5d195150cf], url=[null], ver=[null]} compose.include[3] concept=[434910001] not found in the expanded valueset"
}
]
}
Kevin Mayfield (Jul 12 2019 at 14:26):
Whatever profile you are using has specified a a valueset, the resource you've created has a code that isn't in that valueset.
Krishna Moorthi (Jul 12 2019 at 14:42):
Thanks for the response, Yes I have verified the resource code attribute which does not have the code listed in error. the below code is in the resource where as in error is different.
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "32016-8",
"display": "Glucose [Mass/volume] in Capillary blood"
}
]
},
Last updated: Apr 12 2022 at 19:14 UTC