6:16 PM |
Monday, July 1, 2013
Introduction
At the heart of every OpenMRS implementation is a concept dictionary
that defines the medical concepts (questions and answers) used as the
building blocks for forms, orders, clinical summaries, reports and
almost every aspect of the data. Most OpenMRS implementations have an
open concept dictionary - one that is considered incomplete and evolves
over time. Therefore, as clinicians document conditions, the OpenMRS
concept dictionary must be expandable to accommodate meaningful clinical
data.
What follows is an introduction to the Concept Dictionary, OpenMRS's
unique foundation, and how it provides flexibility for the
implementation.
Definitions
Concept Dictionary
The concept dictionary represents a fundamental building block of
OpenMRS. Similar to a dictionary defining the function, meaning, and
relationships of the words, the concept dictionary defines the name,
code, and appropriate attributes for any observations or data collected
(including medical tests, drugs, results, symptoms and conditions). To
even further simplify the concept dictionary, one could compare it to an
infinitely large Excel spreadsheet, where patients are represented as
rows and concepts are represented by columns.
Concept
The concept is the basic element of flexibility in OpenMRS. Concepts
are the individual data points collected from a population of patients.
Concepts include both questions and answers.
For example, blood type data is collected for a patient. The
question is "What is the blood type for the patient?", with a set of
discrete answers of "A, B, AB or O". To implement this in OpenMRS with
concepts, the question is a concept ("
blood type") and each response ("
A", "
B", "
AB" and "
O") is also a concept. For this one question, a total of 5 concepts are required.
What about a question where the answer is not a discrete answer? If
the question is "What is the name of your first pet?", the answer would
be expressed in a text box. It would not be possible to provide a
complete list of every possible name for your pet. In this example,
there would be one concept -- "
name of first pet".
The bottom line is, if you need a medical word within your electronic
records system, it needs to be defined within the concept dictionary.
More detail about all the possible concepts
in a later section.
Encounter
A single, specific interaction between the patient and a provider. An
encounter can be any interaction and includes doctor visits, laboratory
tests, food distribution, home visits, counselor appointments, etc.
Encounters are typically represented as a form (consisting of hundreds
of observations), but could also be a touch-screen patient registration
or a single lab test for CD4. For example, a patient visits a health
center or hospital. For each electronic form completed for that
patient, a new encounter is created. Each will have a unique
encounter_id and encounter_type. Forms could be completed by different
departments (ie. drug pickup, visit with an HIV clinician, Diabetes
visit, food package received), and will have an associated
encounter_type (ie. ART Drug Regimen Pickup, Adult intake, food
assistance, lab test, etc). Each encounter has an encounter type,
date/time, location and provider.
Observations
Anything actively measured or observed during an encounter. As an
example, patients' weights, heights, blood pressures, and BMIs are
observations, as well as qualitative facts including the number of years
a patient smoked, the activities in which the patient experiences
shortness of breath, and finding on an X-ray. Although typically an
observable question, demographics are an exception, and are recorded as
separate concepts. Each observation has a unique obs_id.
These are possible scenarios for encounters and observations:
- One visit with one encounter without observations – Touch screen patient registration in Haiti
- One visit with one encounter with one observation – Touch screen patient registration in Rwinkwavu, Rwanda with weight recorded
- One visit with one encounter and many observations – HIV followup form
- One visit with multiple encounters and many observations – HIV
followup form along with ART drug regimen pickup. This would show 2
encounters, where each encounter would have a different encounter id and
encounter type.
Demographics
Demographics are any descriptive characteristic of a person. This
includes: name, address, date of birth, age, and any other social
construct involvement.
Post a Comment