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

: Patient (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:Patient;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "JoelAlexPatient"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "7" ];
     fhir:Meta.lastUpdated [ fhir:value "2021-08-06T14:01:37.014+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#ZUtzI9gMaQppmoj3" ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <div class=\"hapiHeaderText\">Jose \n        \n                \n                <b>RODRIGUEZ </b>\n            </div>\n            <table class=\"hapiPropertyTable\">\n                <tbody>\n                    <tr>\n                        <td>Identifier</td>\n                        <td>JoelAlexPatient</td>\n                    </tr>\n                </tbody>\n            </table>\n        </div>"
  ];
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "urn:system" ];
     fhir:Identifier.value [ fhir:value "JoelAlexPatient" ]
  ];
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "Rodriguez" ];
     fhir:HumanName.given [
       fhir:value "Jose";
       fhir:index 0     ]
  ];
  fhir:Patient.gender [ fhir:value "male"];
  fhir:Patient.link [
     fhir:index 0;
     fhir:Patient.link.other [
       fhir:Reference.reference [ fhir:value "RelatedPerson/pathology-next-of-kin" ]     ];
     fhir:Patient.link.type [ fhir:value "seealso" ]
  ].

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

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