FHIR Implementation Guide for ABDM
3.0.1 - CI Build India flag


banner

FHIR Implementation Guide for ABDM - Local Development build (v3.0.1). See the Directory of published versions

: MedicationRequest/example-01 - TTL Representation

Raw ttl | Download


@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:MedicationRequest;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example-01"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://nrces.in/ndhm/fhir/r4/StructureDefinition/MedicationRequest";
       fhir:index 0;
       fhir:link <https://nrces.in/ndhm/fhir/r4/StructureDefinition/MedicationRequest>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Narrative with Details</b></p><p><b>id</b>: example-01</p><p><b>status</b>: active</p><p><b>intent</b>: order</p><p><b>subject</b>: ABC</p><p><b>requester</b>: Dr. DEF</p><p><b>reasonCode</b>: Traveller's Diarrhea</p><p><b>medication</b>: Azithromycin (as azithromycin dihydrate) 250 mg oral capsule</p><p><b>authoredOn</b>: 2020-07-09</p><p><b>dosageInstruction</b>: One tablet at once (With or after food)</p></div>"
  ];
  fhir:MedicationRequest.status [ fhir:value "active"];
  fhir:MedicationRequest.intent [ fhir:value "order"];
  fhir:MedicationRequest.medicationCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:324252006;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "324252006" ];
       fhir:Coding.display [ fhir:value "Azithromycin (as azithromycin dihydrate) 250 mg oral capsule" ]     ]
  ];
  fhir:MedicationRequest.subject [
     fhir:Reference.reference [ fhir:value "Patient/example-01" ];
     fhir:Reference.display [ fhir:value "ABC" ]
  ];
  fhir:MedicationRequest.authoredOn [ fhir:value "2020-07-09"^^xsd:date];
  fhir:MedicationRequest.requester [
     fhir:Reference.reference [ fhir:value "Practitioner/example-01" ];
     fhir:Reference.display [ fhir:value "Dr. DEF" ]
  ];
  fhir:MedicationRequest.reasonCode [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:11840006;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "11840006" ];
       fhir:Coding.display [ fhir:value "Traveler's diarrhea" ]     ]
  ];
  fhir:MedicationRequest.reasonReference [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Condition/example-01" ]
  ];
  fhir:MedicationRequest.dosageInstruction [
     fhir:index 0;
     fhir:Dosage.text [ fhir:value "One tablet at once" ];
     fhir:Dosage.additionalInstruction [
       fhir:index 0;
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:311504000;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "311504000" ];
         fhir:Coding.display [ fhir:value "With or after food" ]       ]     ];
     fhir:Dosage.timing [
       fhir:Timing.repeat [
         fhir:Timing.repeat.frequency [ fhir:value "1"^^xsd:positiveInteger ];
         fhir:Timing.repeat.period [ fhir:value "1"^^xsd:decimal ];
         fhir:Timing.repeat.periodUnit [ fhir:value "d" ]       ]     ];
     fhir:Dosage.route [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:26643006;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "26643006" ];
         fhir:Coding.display [ fhir:value "Oral Route" ]       ]     ];
     fhir:Dosage.method [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:421521009;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "421521009" ];
         fhir:Coding.display [ fhir:value "Swallow" ]       ]     ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.