0.2.0 - ci-build

RuCoreIG, published by HL7 FHIR Россия. This guide is not an authorized publication; it is the continuous build for version 0.2.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

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

Raw json | Download

{
  "resourceType" : "MedicationRequest",
  "id" : "example-core-medicationrequest-ivanov-paracetamol",
  "text" : {
    "status" : "generated",
    "div" : "<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>"
  },
  "identifier" : [
    {
      "use" : "official",
      "system" : "https://fhir.ru/ig/core/systems/medicationrequest",
      "value" : "MR-2024-001"
    }
  ],
  "status" : "active",
  "intent" : "order",
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
          "code" : "outpatient",
          "display" : "Outpatient"
        }
      ]
    }
  ],
  "priority" : "routine",
  "medication" : {
    "concept" : {
      "coding" : [
        {
          "system" : "http://www.nlm.nih.gov/research/umls/rxnorm",
          "code" : "313782",
          "display" : "Acetaminophen 500 MG Oral Tablet"
        }
      ]
    }
  },
  "subject" : {
    🔗 "reference" : "Patient/example-core-patient-ivanov",
    "display" : "Иванов Иван Петрович"
  },
  "encounter" : {
    🔗 "reference" : "Encounter/example-core-encounter-consultation",
    "display" : "Консультация терапевта"
  },
  "authoredOn" : "2024-01-15T10:30:00Z",
  "requester" : {
    🔗 "reference" : "PractitionerRole/example-core-practitionerrole-smirnov-therapist",
    "display" : "Смирнов Александр Иванович"
  },
  "dosageInstruction" : [
    {
      "text" : "500 мг 3 раза в день",
      "timing" : {
        "repeat" : {
          "frequency" : 3,
          "period" : 1,
          "periodUnit" : "d"
        }
      },
      "route" : {
        "coding" : [
          {
            "system" : "http://snomed.info/sct",
            "code" : "26643006",
            "display" : "Oral route"
          }
        ]
      },
      "doseAndRate" : [
        {
          "type" : {
            "coding" : [
              {
                "system" : "http://terminology.hl7.org/CodeSystem/dose-rate-type",
                "code" : "ordered",
                "display" : "Ordered"
              }
            ]
          },
          "doseQuantity" : {
            "value" : 500,
            "unit" : "mg",
            "system" : "http://unitsofmeasure.org",
            "code" : "mg"
          }
        }
      ]
    }
  ]
}