You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
We implemented FHIR terminology by introducing Concept resource, which can be represented in
database as a concept table.
For ValueSets effective expansions - valueset id's can be denormalized into concept as array of ids. This way expansion and lookup will be like:
select*from concept
where valueSetIds contains "vs-1"and code in (...)
The text was updated successfully, but these errors were encountered:
Shell we discuss naming - spec says table should be named valueset_codes - i prefer Concept table name to be more FHIR-like resource name. The basic structure for this pseudo-resource can be taken from Coding data type.
We implemented FHIR terminology by introducing Concept resource, which can be represented in
database as a
concept
table.For ValueSets effective expansions - valueset id's can be denormalized into concept as array of ids. This way expansion and lookup will be like:
The text was updated successfully, but these errors were encountered: