FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example SupplyDelivery/simpledelivery (Turtle)

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient, Practitioner

Raw Turtle (+ also see Turtle/RDF Format Specification)

Simple delivery for resupply

@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 -------------------------------------------------------------------

#  
#This is the corresponding supply delivery from the supplye request example
# 

[a fhir:SupplyDelivery ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "simpledelivery"] ; # 
  fhir:identifier ( [
     fhir:value [ fhir:v "Order10284" ]
  ] ) ; #  
#business identifier - in this case the same as the request id
# 
  fhir:basedOn ( [
     fhir:reference [ fhir:v "SupplyRequest/simpleorder" ]
  ] ) ; # 
  fhir:partOf ( [
     fhir:display [ fhir:v "Central Supply Restock" ]
  ] ) ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:type [
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/supplydelivery-supplyitemtype"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "device" ]
     ] ) ;
     fhir:text [ fhir:v "Blood collect tubes blue cap" ]
  ] ; # 
  fhir:stage [
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/supplydelivery-stage"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "dispatch" ] ;
       fhir:display [ fhir:v "Dispatch" ]
     ] )
  ] ; # 
  fhir:suppliedItem ( [
     fhir:quantity [
       fhir:value [ fhir:v "10"^^xsd:decimal ]
     ] ;
     fhir:item [
       a fhir:CodeableConcept ;
       fhir:coding ( [
         fhir:code [ fhir:v "BlueTubes" ] ;
         fhir:display [ fhir:v "Blood collect tubes blue cap" ]
       ] )
     ]
  ] ) ; # 
  fhir:occurrence [ fhir:v "2016-12-31"^^xsd:date] ; # 
  fhir:supplier [
     fhir:display [ fhir:v "Vendor1" ]
  ] ; # 
  fhir:destination [
     fhir:display [ fhir:v "Location 1" ]
  ]] . # 

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.