@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 -------------------------------------------------------------------

<http://hl7.org/fhir/uv/order-catalog/ClinicalUseDefinition/example-interaction> a fhir:ClinicalUseDefinition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-interaction"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/InteractionDefinition"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/uv/order-catalog/StructureDefinition/InteractionDefinition>
     ] )
  ] ; # 
  fhir:language [ fhir:v "en-US"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\">\n            <p>Drug interaction: Clarithromycin and Warfarin - increased anticoagulant effect</p>\n        </div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:type [ fhir:v "interaction"] ; # 
  fhir:interaction [
     fhir:interactant ( [
       fhir:item [
         a fhir:CodeableConcept ;
         fhir:coding ( [
           a sct:387487009 ;
           fhir:system [
             fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
             fhir:l <http://snomed.info/sct>
           ] ;
           fhir:code [ fhir:v "387487009" ] ;
           fhir:display [ fhir:v "Clarithromycin" ]
         ] )
       ]
     ] [
       fhir:item [
         a fhir:CodeableConcept ;
         fhir:coding ( [
           a sct:372756006 ;
           fhir:system [
             fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
             fhir:l <http://snomed.info/sct>
           ] ;
           fhir:code [ fhir:v "372756006" ] ;
           fhir:display [ fhir:v "Warfarin" ]
         ] )
       ]
     ] ) ;
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://hl7.org/fhir/interaction-type"^^xsd:anyURI ;
           fhir:l <http://hl7.org/fhir/interaction-type>
         ] ;
         fhir:code [ fhir:v "drug-drug" ] ;
         fhir:display [ fhir:v "drug to drug interaction" ]
       ] )
     ] ;
     fhir:effect [
       fhir:concept [
         fhir:coding ( [
           a sct:419511003 ;
           fhir:system [
             fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
             fhir:l <http://snomed.info/sct>
           ] ;
           fhir:code [ fhir:v "419511003" ] ;
           fhir:display [ fhir:v "Propensity to adverse reactions to drug" ]
         ] ) ;
         fhir:text [ fhir:v "Increased anticoagulant effect and risk of bleeding" ]
       ]
     ]
  ] . # 

# -------------------------------------------------------------------------------------

