EHR items
EHR items are elements of knowledge known about a User. EHR items have 3 different types Contraception
, Condition
, Medication
.
The Contraception object
method - enum
The method of contraception PILL
, IUD
, CONDOM
, IMPLANT
, NATURAL
, CONTRACEPTIVE_PATCH
, VAGINAL_RING
, DIAPHRAGM
, CERVICAL_CAP
, FEMALE_STERILIZATION
, MALE_STERILIZATION
.
started_at - approximated_date
Start date of contraception program
ended_at - approximated_date
End date of contraception program
brand - string
Commercial brand of contraception used if any
mentioned_because - enum
The reason why this contraception object has been mentioned EXPLICIT_USE
, JUST_DISCUSSED
is_final - bool
(Mostly useful in case of audio streaming) If false, this fact is considered a temporary result, and may be altered or removed later after further analysis.
Example
{
type: "Contraception",
method: "Pill",
started_at: {
reference: "2020-05-01T10:00:18.789Z",
granularity: "SAME_MONTH"
},
ended_at: null,
brand: "Cerazette",
mentioned_because: "JUST_DISCUSSED"
}
The Condition object
Condition regroups symptoms or diseases.
condition - string
Textual description of the condition, e.g. "headache"
idc10_id - string
Corresponding id in the ICD10 taxonomy, e.g. "R51"
started_at - approximated_date
Start date of condition
ended_at - approximated_date
End date of condition
body_part - string
Textual description of the body part involved, e.g. "head"
mentioned_because - enum
The reason why this condition has been mentioned EXPLICIT_PRESENCE
, EXPLICIT_PAST_PRESENCE
, JUST_DISCUSSED
is_final - bool
(Mostly useful in case of audio streaming) If false, this fact is considered a temporary result, and may be altered or removed later after further analysis.
{
type: "Condition",
condition: "Headache",
body_part: "Head",
started_at: {
reference: "2020-05-01T10:00:18.789Z",
granularity: "SAME_DAY"
},
idc10Id: "R51.9",
mentioned_because: "EXPLICIT_PRESENCE"
}
The Medication object
brand - string
Commercial name of the medication
active_substances - string array
Standard naming of active substances composing this medication
mentioned_because - enum
The reason why this medication has been mentioned EXPLICIT_USE
, JUST_DISCUSSED
is_final - bool
(Mostly useful in case of audio streaming) If false, this fact is considered a temporary result, and may be altered or removed later after further analysis.
{
type: "Medication",
brand: "Doliprane",
active_ingredients: ["Paracetamol"],
mentioned_because: "CURRENTLY_TAKEN"
}