@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 -------------------------------------------------------------------

<http://hl7.org/fhir/us/dme-orders/Medication/Insulin> a fhir:Medication ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Insulin"] ; # 
  fhir:meta [
     fhir:versionId [ fhir:v "2" ] ;
     fhir:lastUpdated [ fhir:v "2020-08-10T00:59:47.492Z"^^xsd:dateTime ] ;
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/dme-orders/StructureDefintion/PAOX-Medication"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/dme-orders/StructureDefintion/PAOX-Medication>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <div class=\"hapiHeaderText\">Human Insulin 100 Unt/ml</div>\n        </div>"
  ] ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [ fhir:v "http://www.nlm.nih.gov/research/umls/rxnorm"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "311036" ] ;
       fhir:display [ fhir:v "Humulin R 100 UNT/ML Injectable Solution" ]
     ] ) ;
     fhir:text [ fhir:v "Human Insulin 100 Unt/ml" ]
  ] . # 

# -------------------------------------------------------------------------------------

