Cancer Pathology Data Sharing
0.1.0 - STU 1 Ballot

This page is part of the Sharing eCC Data from Pathology Labs to EHR (v0.1.0: STU1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions

: Next-of-Kin RelatedPerson (example) - 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 "pathology-next-of-kin"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "3" ];
     fhir:Meta.lastUpdated [ fhir:value "2021-08-06T14:01:37.708+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#ZUtzI9gMaQppmoj3" ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/cancer-reporting/StructureDefinition/us-pathology-next-of-kin";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/cancer-reporting/StructureDefinition/us-pathology-next-of-kin>     ]
  ];
  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-JoelAlexPatient.html\">Generated Summary: id: JoelAlexPatient; Jose Rodriguez ; gender: male</a></p><p><b>relationship</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v2-0131 N}\">Next-of-Kin</span></p><p><b>name</b>: Minni Me </p><p><b>telecom</b>: ph: 1-989-654-7896</p></div>"
  ];
  fhir:RelatedPerson.patient [
     fhir:Reference.reference [ fhir:value "Patient/JoelAlexPatient" ]
  ];
  fhir:RelatedPerson.relationship [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0131" ];
       fhir:Coding.code [ fhir:value "N" ];
       fhir:Coding.display [ fhir:value "Next-of-Kin" ]     ]
  ];
  fhir:RelatedPerson.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "Me" ];
     fhir:HumanName.given [
       fhir:value "Minni";
       fhir:index 0     ]
  ];
  fhir:RelatedPerson.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "1-989-654-7896" ]
  ].

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

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