We were getting the below code systems,value sets and structure definitions as unknown.
http://hl7.org/fhir/us/core/STU7/ValueSet-us-core-condition-code.jsonSo we have added the raw json to the validation chain for the ones that were missing through the validation chain methods given below for the respective error.
prePopulatedSupport.addStructureDefinition(someStructureDefnition);
prePopulatedSupport.addValueSet(someValueSet);
prePopulatedSupport.addCodeSystem(someValueSet);
Some of the 'unknowns' are resolved and validation engine recognizes those extensions,code systems and value sets.But for the ones highlighted in red we are still getting 'Unknown' error from the validator.
Appreciate any suggestions on a way forward to resolve these errors from the validator.
Thanks,