@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://nictiz.nl/fhir/Patient/nl-core-NameInformation-firstNamesAndInitials> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "nl-core-NameInformation-firstNamesAndInitials"] ; #  An example of a situation where just the first official name is fully known while for the additional first 
#        names just an initial is known. . 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://nictiz.nl/fhir/StructureDefinition/nl-core-Patient"^^xsd:anyURI ;
       fhir:link <http://nictiz.nl/fhir/StructureDefinition/nl-core-Patient>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir: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 J.W. (Henk) Schemer(OFFICIAL)</td></tr></table></div>"
  ] ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:text [ fhir:v "Hendrik J.W. (Henk) Schemer" ] ;
     fhir:family [
       fhir:v "Schemer" ;
       fhir:extension ( [
         fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/humanname-own-name"^^xsd:anyURI ] ;
         fhir:value [ fhir:v "Schemer" ]
       ] )
     ] ;
     fhir:given ( [
       fhir:v "Hendrik" ;
       fhir:extension ( [
         fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier"^^xsd:anyURI ] ;
         fhir:value [ fhir:v "BR" ]
       ] )
     ] [
       fhir:v "J." ;
       fhir:extension ( [
         fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier"^^xsd:anyURI ] ;
         fhir:value [ fhir:v "IN" ]
       ] )
     ] [
       fhir:v "W." ;
       fhir:extension ( [
         fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier"^^xsd:anyURI ] ;
         fhir:value [ fhir:v "IN" ]
       ] )
     ] ) #  Each official first name is communicated individually, augmented with the iso21090-EN-qualifier\n           extension set to \"BR\" (Birth) for complete names or \"IN\" for initials. 
  ] [
     fhir:use [ fhir:v "usual" ] ;
     fhir:given ( [ fhir:v "Henk" ] )
  ] ) . #  Both full names and initials are communicated along with other official name information in a .name element
#        with .name.use set to "official". 

# -------------------------------------------------------------------------------------

