How to add profiles via FHIR REST api (HAPI)

I looked at the documentation for creating profiles for FHIR, and I used Forge to create some xml, which I believe is valid for describing a profile. I cannot find in the documentation where it actually states what request I need to make in the RESTful api in order to actually add a new profile.

Any ideas?

+4
source share
1 answer

You can, of course, just “store” your profiles on the FHIR server POSTwith their FHIR endpoint, but you probably mean: can I let instances be checked against StructureDefinition?

, , , :

  • FHIR , StructureDefinition, url (StructureDefinition.url) meta.profile, . POST :
  <Patient>
    <id value="44Q3"/>
    <meta>
      <profile value="http://example.org/StructureDefinition/PatientNL"/>
    </meta>
  </Patient>
+2

Source: https://habr.com/ru/post/1657768/


All Articles