@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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 -------------------------------------------------------------------

<https://hl7.cz/fhir/lab-order/Specimen/CZ-Lab-Specimen-Example> a fhir:Specimen ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "CZ-Lab-Specimen-Example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://hl7.cz/fhir/lab-order/StructureDefinition/cz-specimen"^^xsd:anyURI ;
       fhir:l <https://hl7.cz/fhir/lab-order/StructureDefinition/cz-specimen>
     ] )
  ] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "empty" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">-</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:type [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/v2-0487"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/v2-0487>
       ] ;
       fhir:code [ fhir:v "BLD" ] ;
       fhir:display [ fhir:v "Whole blood" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <https://hl7.cz/fhir/lab-order/Patient/Zyrgana> ;
     fhir:reference [ fhir:v "Patient/Zyrgana" ]
  ] ; # 
  fhir:receivedTime [ fhir:v "2025-04-24T08:30:00+01:00"^^xsd:dateTime] ; # 
  fhir:collection [
     fhir:collected [
       a fhir:DateTime ;
       fhir:v "2025-04-24T08:00:00+02:00"^^xsd:dateTime
     ]
  ] ; # 
  fhir:container ( [
     fhir:type [
       fhir:coding ( [
         a sct:706049000 ;
         fhir:system [
           fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
           fhir:l <http://snomed.info/sct>
         ] ;
         fhir:code [ fhir:v "706049000" ] ;
         fhir:display [ fhir:v "Blood collection tube" ]
       ] )
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

