Nictiz FHIR NL R4 Zib2020
0.9.0 - CI Build

Nictiz FHIR NL R4 Zib2020 - Local Development build (v0.9.0). See the Directory of published versions

: Example Patient - nl-core-NameInformation-firstNames - JSON Representation

Raw json | Download


{
  "resourceType" : "Patient",
  "id" : "nl-core-NameInformation-firstNames",
  "meta" : //  An example of a person where the official first names (voornamen) are known.
  {
    "profile" : [
      "http://nictiz.nl/fhir/StructureDefinition/nl-core-Patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Henk </b> (no stated gender), DoB Unknown</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Alternate names (see the one above)\">Alt. Name:</td><td colspan=\"3\">Hendrik Johan Willem (Henk) Schemer(OFFICIAL)</td></tr></table></div>"
  },
  "name" : [
    //  The official name information is communicated in a .name instance with .name.use set to "official" 
    {
      "use" : "official",
      "text" : "Hendrik Johan Willem (Henk) Schemer",
      "family" : "Schemer",
      "_family" : //  The rendered name of the person 
      {
        "extension" : [
          {
            "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
            "valueString" : "Schemer"
          }
        ]
      },
      "given" : [
        "Hendrik",
        "Johan",
        "Willem"
      ],
      "_given" : [
        //  Each official first name is communicated individually, augmented with the iso21090-EN-qualifier
           extension set to "BR" (Birth) to indicate that it is a complete and official first name. 
        {
          "extension" : [
            {
              "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier",
              "valueCode" : "BR"
            }
          ]
        },
        {
          "extension" : [
            {
              "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier",
              "valueCode" : "BR"
            }
          ]
        },
        {
          "extension" : [
            {
              "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier",
              "valueCode" : "BR"
            }
          ]
        }
      ]
    },
    {
      "use" : "usual",
      "given" : [
        "Henk"
      ]
    }
  ]
}