Hi,
I’m using CodeSystem resource to manage our dictionary-like data, and I’m listing all concepts inside the Codesystem Resource,like this:
<CodeSystem xmlns="http://hl7.org/fhir">
<id value="gender_dict"/>
......
<name value="gender of person"/>
......
<concept>
<code value="1"/>
<display value="male"/>
</concept>
<concept>
<code value="2"/>
<display value="female"/>
</concept>
</CodeSystem>
I know there is a way to do paging with RESOURCE, not concept:
<Bundle>
......
<link>selfLink</link>
<link>nextPageLink</link>
<link>PreviousPageLink</link>
.......
<resource>someresource1</resource>
<resource>someresource2</resource>
......
</Bundle>
But what should I do with ONE Codesystem Resource that contains thousands of concepts(like LOINC, ICD-10)? Do I have to return the CodeSystem with all the concepts at once? Is there a proper restful API for concepts?
Thanks.