FHIR Chat · ValueSet questions · implementers

Stream: implementers

Topic: ValueSet questions


view this post on Zulip Daniel Catita (Aug 12 2021 at 15:57):

I have uploaded a csv with a custom Code System, I was able to validate a few of the codes to make sure they were correctly implemented.
I have then created a Value Set that includes the system URI and nothing else, just to have a way of returning all the codes and descriptions of the custom code system.
I understand I have to wait 10 minutes for it to be "pre-expanded". But when it does, it saves 0 concepts:
Pre-expanded ValueSet[ValueSet/55/_history/1] with URL[Codes.001] - Saved 0 concepts in 38ms

So, questions:
1- Do I need to do all of this just to get all the codes of a code system?
2- Why is it saving 0 concepts and not all of the custom code system?
({
"resourceType": "ValueSet",
"url": "Codes.001",
"compose" : {
"include" : [{
"system" : "http://codes"
}]
}
}
3- Is there a way to reduce the 10 min wait?
4- Whenever I create a ValueSet, it is created with a random id, like "55". Can I specify an id for it to have? Or do I need to take note of all these ids it creates?

If this is documented anywhere, please point me in that direction, I've been failing to find that info.

Thanks!

view this post on Zulip Lloyd McKenzie (Aug 12 2021 at 16:12):

Sorry, what system are you doing this with?

view this post on Zulip Daniel Catita (Aug 12 2021 at 16:15):

Not sure if I understood the question.. I named it "http://codes as it's just a small custom CodeSystem with 3 codes to try out the Hapi FHIR JPA Server.

view this post on Zulip Lloyd McKenzie (Aug 12 2021 at 18:59):

"HAPI" was what I'm looking for. The system URL needs to be specific to your usecase and a valid URI if you want to be conformant. However, for your question, suggest asking on #hapi

view this post on Zulip Daniel Catita (Aug 13 2021 at 08:04):

Will do. Thanks!


Last updated: Apr 12 2022 at 19:14 UTC