@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://www.ehealth.fgov.be/standards/fhir/lab/Specimen/urine1> a fhir:Specimen ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "urine1"] ; # 
  fhir:meta [
     fhir:versionId [ fhir:v "1" ] ;
     fhir:profile ( [
       fhir:v "https://www.ehealth.fgov.be/standards/fhir/lab/StructureDefinition/be-specimen-laboratory"^^xsd:anyURI ;
       fhir:l <https://www.ehealth.fgov.be/standards/fhir/lab/StructureDefinition/be-specimen-laboratory>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "empty" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">empty</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "available"] ; # 
  fhir:type [
     fhir:coding ( [
       a sct:78014005 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "78014005" ] ;
       fhir:display [ fhir:v "Urine" ]
     ] )
  ] ; # 
  fhir:receivedTime [ fhir:v "2015-11-04"^^xsd:date] ; # 
  fhir:note ( [
     fhir:text [ fhir:v "24u urinecollectie" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

