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

: Adrenal Specimen (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:Specimen;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "adrenal-example"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "4" ];
     fhir:Meta.lastUpdated [ fhir:value "2021-08-06T14:01:37.599+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-specimen";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/cancer-reporting/StructureDefinition/us-pathology-specimen>     ]
  ];
  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: 123456789</p><p><b>type</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v2-0487 BX}\">Biopsy</span></p><h3>Containers</h3><table class=\"grid\"><tr><td>-</td><td><b>Identifier</b></td></tr><tr><td>*</td><td>id: 987654321</td></tr></table></div>"
  ];
  fhir:Specimen.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://some-lis.org/fhir/specimen-identifier-provisioner" ];
     fhir:Identifier.value [ fhir:value "123456789" ]
  ];
  fhir:Specimen.type [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0487" ];
       fhir:Coding.code [ fhir:value "BX" ]     ]
  ];
  fhir:Specimen.container [
     fhir:index 0;
     fhir:Specimen.container.identifier [
       fhir:index 0;
       fhir:Identifier.system [ fhir:value "http://some-lis.org/fhir/specimen-containerID-provisioner" ];
       fhir:Identifier.value [ fhir:value "987654321" ]     ]
  ].

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

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