@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/us/pacio-adi/RelatedPerson/Example-Smith-Johnson-ADIWitness1> a fhir:RelatedPerson ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Example-Smith-Johnson-ADIWitness1"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/pacio-adi/StructureDefinition/ADI-Witness"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/pacio-adi/StructureDefinition/ADI-Witness>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Witness</b></p><p>Debra Johnson</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:extension ( [
       fhir:url [
         fhir:v "AttesterRole"^^xsd:anyURI ;
         fhir:l fhir:AttesterRole
       ] ;
       fhir:value [
         a fhir:CodeableConcept ;
         fhir:coding ( [
           a loinc:81369-1 ;
           fhir:system [
             fhir:v "http://loinc.org"^^xsd:anyURI ;
             fhir:l <http://loinc.org>
           ] ;
           fhir:code [ fhir:v "81369-1" ] ;
           fhir:display [ fhir:v "First witness" ]
         ] )
       ]
     ] ) ;
     fhir:url [
       fhir:v "http://hl7.org/fhir/us/pacio-adi/StructureDefinition/adi-notaryInformation-extension"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/pacio-adi/StructureDefinition/adi-notaryInformation-extension>
     ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:patient [
     fhir:l <http://hl7.org/fhir/us/pacio-adi/Patient/Example-Smith-Johnson-Patient1> ;
     fhir:reference [ fhir:v "Patient/Example-Smith-Johnson-Patient1" ]
  ] ; # 
  fhir:relationship ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/v3-ParticipationType"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/v3-ParticipationType>
       ] ;
       fhir:code [ fhir:v "WIT" ]
     ] )
  ] ) ; # 
  fhir:name ( [
     fhir:text [ fhir:v "Johnson, Debra" ] ;
     fhir:family [ fhir:v "Johnson" ] ;
     fhir:given ( [ fhir:v "Debra" ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "email" ] ;
     fhir:value [ fhir:v "DebraJohnson@example.org" ] ;
     fhir:use [ fhir:v "home" ]
  ] ) . # 

<http://hl7.org/fhir/us/pacio-adi/Patient/Example-Smith-Johnson-Patient1> a fhir:Us .

# -------------------------------------------------------------------------------------

