Argonaut Data Query Implementation Guide Version 1.0.0

This page is part of the Argonaut Data Query Implementation Guide (v1.0.0: Release) based on FHIR R2. This is the current published version. For a full list of available versions, see the Directory of published versions

{title?}

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

<Medication/argo-med1> a fhir:Medication;
  fhir:nodeRole fhir:treeRoot;
  fhir:Medication.id [ fhir:value "argo-med1"];
  fhir:Medication.meta [
     fhir:Meta.profile [
       fhir:value "http://fhir.org/guides/argonaut/StructureDefinition/argo-medication";
       fhir:index 0     ]
  ];
  fhir:Medication.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: argo-med1</p><p><b>meta</b>: </p><p><b>code</b>: lisinopril oral 10 mg <span style=\"background: LightGoldenRodYellow\">(Details : {RxNorm code '206765' = 'Lisinopril 10 MG Oral Tablet [Prinivil]', given as 'Lisinopril 10 MG Oral Tablet [Prinivil]'})</span></p></div>"
  ];
  fhir:Medication.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://www.nlm.nih.gov/research/umls/rxnorm" ];
       fhir:Coding.code [ fhir:value "206765" ];
       fhir:Coding.display [ fhir:value "Lisinopril 10 MG Oral Tablet [Prinivil]" ]     ];
     fhir:CodeableConcept.text [ fhir:value "lisinopril oral 10 mg" ]
  ].