International Patient Summary Implementation Guide
1.0.0 - STU 1

This page is part of the International Patient Summary Implementation Guide (v1.0.0: STU 1) based on FHIR R4. The current version which supercedes this version is 1.1.0. For a full list of available versions, see the Directory of published versions

Specimen: example - TTL Representation

(back to description)

Raw ttl

Source view

@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:Specimen;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "specimen-example-1"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: specimen-example-1</p><p><b>type</b>: Urine specimen <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '122575003' = 'Urine specimen', given as 'Urine specimen'})</span></p><p><b>subject</b>: <a href=\"Patient-66033.html\">Generated Summary: id: 66033; 1998041799999, urn:uuid:647515ed-0d5e-4c99-b23d-073fbc593f76; Marie Lux-Brennard ; gender: female; birthDate: 1998-04-17</a></p><h3>Collections</h3><table class=\"grid\"><tr><td>-</td><td><b>Method</b></td></tr><tr><td>*</td><td>Urine specimen collection, clean catch <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '73416001' = 'Urine specimen collection, clean catch', given as 'Urine specimen collection, clean catch'})</span></td></tr></table></div>"
  ];
  fhir:Specimen.type [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:122575003;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "122575003" ];
       fhir:Coding.display [ fhir:value "Urine specimen" ]     ]
  ];
  fhir:Specimen.subject [
     fhir:Reference.reference [ fhir:value "Patient/66033" ]
  ];
  fhir:Specimen.collection [
     fhir:Specimen.collection.method [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:73416001;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "73416001" ];
         fhir:Coding.display [ fhir:value "Urine specimen collection, clean catch" ]       ]     ]
  ].

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

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