HL7 FHIR Implementation Guide: Profiles for ICSR Transfusion and Vaccination Adverse Event Detection and Reporting
0.1.0 - STU 1 Ballot

This page is part of the Profiles for ICSR Transfusion and Vaccination Adverse Event Detection and Reporting (v0.1.0: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions

: Sample Related Person Author of ICSR Report - TTL Representation

Raw ttl | Download


@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 -------------------------------------------------------------------

 a fhir:RelatedPerson;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "SampleAuthorRelatedPerson"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/icsr-ae-reporting/StructureDefinition/ibm-fda-icsr-authorrelatedperson";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/icsr-ae-reporting/StructureDefinition/ibm-fda-icsr-authorrelatedperson>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>patient</b>: <a href=\"Patient-SampleICSRPatient.html\">Generated Summary: id: 123456789; Irma Black ; Phone: + 1-234-653-6558; gender: female; birthDate: 1998-08-31</a></p><p><b>name</b>: Joe Smith </p><p><b>telecom</b>: ph: 555-555-5554, <a href=\"mailto:joe@anywhere.com\">joe@anywhere.com</a></p><p><b>address</b>: 1234 Apple St New York NY 11111 US </p></div>"
  ];
  fhir:RelatedPerson.patient [
     fhir:Reference.reference [ fhir:value "Patient/SampleICSRPatient" ]
  ];
  fhir:RelatedPerson.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "Smith" ];
     fhir:HumanName.given [
       fhir:value "Joe";
       fhir:index 0     ]
  ];
  fhir:RelatedPerson.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "555-555-5554" ]
  ], [
     fhir:index 1;
     fhir:ContactPoint.system [ fhir:value "email" ];
     fhir:ContactPoint.value [ fhir:value "joe@anywhere.com" ]
  ];
  fhir:RelatedPerson.address [
     fhir:index 0;
     fhir:Address.line [
       fhir:value "1234 Apple St";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "New York" ];
     fhir:Address.state [ fhir:value "NY" ];
     fhir:Address.postalCode [ fhir:value "11111" ];
     fhir:Address.country [ fhir:value "US" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.