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

: Encounter (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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Encounter;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "pathology-encounter"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "1" ];
     fhir:Meta.lastUpdated [ fhir:value "2021-06-22T14:53:00.210+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#VtC1lWviqpHKWeZL" ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter>     ]
  ];
  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>identifier</b>: id: 123</p><p><b>status</b>: finished</p><p><b>class</b>: <span title=\"{http://terminology.hl7.org/CodeSystem/v3-ActCode IMP}\">inpatient encounter</span></p><p><b>type</b>: <span title=\"Codes: {http://snomed.info/sct 308335008}\">Patient encounter procedure</span></p><p><b>subject</b>: <a href=\"Patient-JoelAlexPatient.html\">Generated Summary: id: JoelAlexPatient; Jose Rodriguez ; gender: male</a></p><blockquote><p><b>participant</b></p><p><b>individual</b>: <a href=\"Practitioner-oncologist-example.html\">Generated Summary: id: 123456789; Wise Owl </a></p></blockquote><blockquote><p><b>participant</b></p><p><b>individual</b>: <a href=\"Practitioner-pathologist-example.html\">Generated Summary: id: 987654321; Stains Alot </a></p></blockquote></div>"
  ];
  fhir:Encounter.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://example.com/fhir/encounters" ];
     fhir:Identifier.value [ fhir:value "123" ]
  ];
  fhir:Encounter.status [ fhir:value "finished"];
  fhir:Encounter.class [
     fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
     fhir:Coding.code [ fhir:value "IMP" ];
     fhir:Coding.display [ fhir:value "inpatient encounter" ]
  ];
  fhir:Encounter.type [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:308335008;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "308335008" ]     ]
  ];
  fhir:Encounter.subject [
     fhir:Reference.reference [ fhir:value "Patient/JoelAlexPatient" ]
  ];
  fhir:Encounter.participant [
     fhir:index 0;
     fhir:Encounter.participant.individual [
       fhir:Reference.reference [ fhir:value "Practitioner/oncologist-example" ]     ]
  ], [
     fhir:index 1;
     fhir:Encounter.participant.individual [
       fhir:Reference.reference [ fhir:value "Practitioner/pathologist-example" ]     ]
  ].

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

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