@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-firstNamesAndInitialsSeparate> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "nl-core-NameInformation-firstNamesAndInitialsSeparate"] ; #  An example of the corner case where both official first names (voornamen) and initials of official first names 
#        (initialen) are given, but they don't match and the sending system has no information on the relationship 
#        between these two distinct sets of information. 
  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 Names:</td><td colspan=\"3\"><ul><li>Hendrik Willem (Henk) Schemer(OFFICIAL)</li><li>H. J. W. (OFFICIAL)</li></ul></td></tr></table></div>"
  ] ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:text [ fhir:v "Hendrik Willem (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 "Willem" ;
       fhir:extension ( [
         fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier"^^xsd:anyURI ] ;
         fhir:value [ fhir:v "BR" ]
       ] )
     ] ) #  Each official first name is communicated individually, augmented with the iso21090-EN-qualifier\n           extension set to \"BR\" (Birth) to indicate that it is a complete and official first name. 
  ] [
     fhir:use [ fhir:v "official" ] ;
     fhir:given ( [
       fhir:v "H." ;
       fhir:extension ( [
         fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier"^^xsd:anyURI ] ;
         fhir:value [ fhir:v "IN" ]
       ] )
     ] [
       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 initial is communicated individually, augmented with the iso21090-EN-qualifier\n           extension set to \"IN\" (Initial). 
  ] [
     fhir:use [ fhir:v "usual" ] ;
     fhir:given ( [ fhir:v "Henk" ] )
  ] ) . #  The full names are communicated along with other official name information in the first .name element with
#        .name.use set to "official". 

# -------------------------------------------------------------------------------------

