0.12.0 - ci-build

RuCoreIG, published by HL7 FHIR Россия. This guide is not an authorized publication; it is the continuous build for version 0.12.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/fhir-ru/RuCoreIG/ and changes regularly. See the Directory of published versions

: Пример назначения лекарства - парацетамол Иванова И.П. - TTL Representation

Raw ttl | Download


@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/MedicationRequest/example-core-medicationrequest-ivanov-paracetamol> a fhir:MedicationRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-core-medicationrequest-ivanov-paracetamol"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h3>Назначение лекарства: Парацетамол Иванова И.П.</h3><p><em>Минимальный пример для использования в ссылках</em></p><ul><li><strong>Пациент:</strong> Иванов Иван Петрович</li><li><strong>Препарат:</strong> Парацетамол</li><li><strong>Дозировка:</strong> 500 мг 3 раза в день</li><li><strong>Статус:</strong> Активное</li><li><strong>Дата назначения:</strong> 15.01.2024</li></ul></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:system [ fhir:v "https://fhir.ru/ig/core/systems/medicationrequest"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "MR-2024-001" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:intent [ fhir:v "order"] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/medicationrequest-category"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "outpatient" ] ;
       fhir:display [ fhir:v "Outpatient" ]
     ] )
  ] ) ; # 
  fhir:priority [ fhir:v "routine"] ; # 
  fhir:medication [
     fhir:concept [
       fhir:coding ( [
         fhir:system [ fhir:v "http://www.nlm.nih.gov/research/umls/rxnorm"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "313782" ] ;
         fhir:display [ fhir:v "Acetaminophen 500 MG Oral Tablet" ]
       ] )
     ]
  ] ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/Patient/example-core-patient-ivanov> ;
     fhir:reference [ fhir:v "Patient/example-core-patient-ivanov" ] ;
     fhir:display [ fhir:v "Иванов Иван Петрович" ]
  ] ; # 
  fhir:encounter [
     fhir:link <http://hl7.org/fhir/Encounter/example-core-encounter-consultation> ;
     fhir:reference [ fhir:v "Encounter/example-core-encounter-consultation" ] ;
     fhir:display [ fhir:v "Консультация терапевта" ]
  ] ; # 
  fhir:authoredOn [ fhir:v "2024-01-15T10:30:00Z"^^xsd:dateTime] ; # 
  fhir:requester [
     fhir:link <http://hl7.org/fhir/PractitionerRole/example-core-practitionerrole-smirnov-therapist> ;
     fhir:reference [ fhir:v "PractitionerRole/example-core-practitionerrole-smirnov-therapist" ] ;
     fhir:display [ fhir:v "Смирнов Александр Иванович" ]
  ] ; # 
  fhir:dosageInstruction ( [
     fhir:text [ fhir:v "500 мг 3 раза в день" ] ;
     fhir:timing [
       fhir:repeat [
         fhir:frequency [ fhir:v "3"^^xsd:positiveInteger ] ;
         fhir:period [ fhir:v "1"^^xsd:decimal ] ;
         fhir:periodUnit [ fhir:v "d" ]
       ]
     ] ;
     fhir:route [
       fhir:coding ( [
         a sct:26643006 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "26643006" ] ;
         fhir:display [ fhir:v "Oral route" ]
       ] )
     ] ;
     fhir:doseAndRate ( [
       fhir:type [
         fhir:coding ( [
           fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/dose-rate-type"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "ordered" ] ;
           fhir:display [ fhir:v "Ordered" ]
         ] )
       ] ;
       fhir:dose [
         a fhir:Quantity ;
         fhir:value [ fhir:v "500"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "mg" ] ;
         fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "mg" ]
       ]
     ] )
  ] ) . # 

<http://hl7.org/fhir/Patient/example-core-patient-ivanov> a fhir:Patient .

<http://hl7.org/fhir/Encounter/example-core-encounter-consultation> a fhir:Encounter .

<http://hl7.org/fhir/PractitionerRole/example-core-practitionerrole-smirnov-therapist> a fhir:PractitionerRole .