@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://hl7.org/fhir/us/pacio-adi/RelatedPerson/Example-Smith-Johnson-Notary1> a fhir:RelatedPerson;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "Example-Smith-Johnson-Notary1"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/pacio-adi/StructureDefinition/PADI-Participant";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/pacio-adi/StructureDefinition/PADI-Participant>
     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "additional" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Notary</b></p><p>Charles Xavier</p></div>"
  ];
  fhir:RelatedPerson.patient [
     fhir:link <http://hl7.org/fhir/us/pacio-adi/Patient/Example-Smith-Johnson-Patient1>;
     fhir:Reference.reference [ fhir:value "Patient/Example-Smith-Johnson-Patient1" ]
  ];
  fhir:RelatedPerson.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "Xavier" ];
     fhir:HumanName.given [
       fhir:value "Charles";
       fhir:index 0
     ]
  ];
  fhir:RelatedPerson.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "email" ];
     fhir:ContactPoint.value [ fhir:value "Chales@example.com" ];
     fhir:ContactPoint.use [ fhir:value "work" ]
  ] .

<http://hl7.org/fhir/us/pacio-adi/Patient/Example-Smith-Johnson-Patient1> a fhir:us .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/us/pacio-adi/RelatedPerson/Example-Smith-Johnson-Notary1.ttl> a owl:Ontology;
  owl:imports fhir:fhir.ttl;
  owl:versionIRI <http://build.fhir.org/us/pacio-adi/RelatedPerson/Example-Smith-Johnson-Notary1.ttl> .

# -------------------------------------------------------------------------------------

