@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-firstNames> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "nl-core-NameInformation-firstNames"] ; #  An example of a person where the official first names (voornamen) are 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 Johan Willem (Henk) Schemer(OFFICIAL)</td></tr></table></div>"
  ] ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:text [ fhir:v "Hendrik Johan Willem (Henk) Schemer" ] ; #  The rendered name of the person 
     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 "Johan" ;
       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 "usual" ] ;
     fhir:given ( [ fhir:v "Henk" ] )
  ] ) . #  The official name information is communicated in a .name instance with .name.use set to "official" 

# -------------------------------------------------------------------------------------

