Stream: implementers
Topic: Validation error
Torben M. Hagensen (Apr 29 2020 at 13:01):
I get the following error when validating a bundle resource against the profile I have made for it (on Simplifier.Net). Can anyone explain what it means?
Exception : Internal logic failure: resolve() should only be called on elements of type Reference at 'http://kl.dk/fhir/flis/care/StructureDefinition/flis-care-deliveryReport#Bundle.entry'.
Torben M. Hagensen (Apr 29 2020 at 13:33):
Found the problem. I was using resolve() in a discriminator.
healthcareEng (Apr 08 2022 at 14:34):
Can anyone suggest good online fhir validators for version 4.
John Moehrke (Apr 08 2022 at 14:41):
start http://hl7.org/fhir/validation.html
then https://confluence.hl7.org/display/FHIR/Public+FHIR+Validation+Services
healthcareEng (Apr 08 2022 at 15:30):
{
"resourceType":"Patient",
"active":true,
"address":[
{
"use":"home",
"type":"both",
"line":[
"1387 UBELU RIDGE,189 CAFHA LANE"
],
"city":"BABMEDPE",
"state":"HI",
"postalCode":"51359",
"country":"US",
"text":"1387 UBELU RIDGE,189 CAFHA LANE, BABMEDPE, HI, 51359"
}
],
"birthDate":"1971-11-11",
"communication":[
{
"language":{
"coding":[
{
"system":"urn:ietf:bcp:47",
"code":"en",
"display":"English"
}
]
},
"preferred":true
}
],
"deceasedBoolean":false,
"gender":"male",
"identifier":[
{
"assigner":{
"display":"External Patient Id"
},
"system":"https://www.cardinalhealth.com/api/partners?system=PDX/MCK",
"use":"official",
"value":"309999"
},
{
"assigner":{
"display":"mscriptsToken"
},
"system":"https://www.cardinalhealth.com/api/partners?system=mscripts",
"use":"official",
"value":"HgcFglHlpgllzBHzlHp7cWpYBWlHWSFYBHg7lHWBy9WW7zHgScFYllczFcyHcHKK"
}
],
"managingOrganization":{
"identifier":{
"assigner":{
"display":"NCPDP"
},
"system":"urn:oid:2.16.840.1.113883.3.79",
"use":"official",
"value":"7777777"
}
},
"multipleBirthBoolean":false,
"name":[
{
"use":"official",
"family":"HOCK",
"given":[
"HOCK"
],
"text":"HOCK HOCK"
}
],
"telecom":[
{
"system":"phone",
"use":"mobile",
"value":"9998619704"
},
{
"system":"sms",
"use":"mobile",
"value":"9998619704"
},
{
"system":"email",
"value":"abc@xyz.com"
}
]
}
healthcareEng (Apr 08 2022 at 15:31):
I am trying to run validator(on above resource) : https://inferno.healthit.gov/validator/
getting below error any idea why ???
Patient: Global Profile reference 'http://hl7.org/fhir/us/core/StructureDefinition/patient' from IG {1} could not be resolved, so has not been checked on line 1. Jump to error.
Lloyd McKenzie (Apr 08 2022 at 15:42):
You might ask on #inferno
Florian Eska (Apr 12 2022 at 09:03):
Richard Townley-O'Neill said:
Are you using a national variant that tx.fhir.org does not know of? See http://hl7.org/fhir/R4/icd.html#variants
we not using a national variant, but I read https://www.icd10data.com for A02.22 and than The 2022 edition of ICD-10-CM A02.22 became effective on October 1, 2021.
and than may be it is to new for the validation list. Same I saw for G95.20
Last updated: Apr 12 2022 at 19:14 UTC