Your task is to analyze the following text with medical events and divide it into individual medical elements only if they are part of a list of similar items.
The elements should be in a list format.
Do not divide single medical events into their components (e.g., keep a medication and its dosage together as one element).
Take into context that the division should make sense and be useful for the doctor to understand the patient's situation and history.
Rules for division:
1. Divide lists of similar items (e.g., multiple medications, multiple diagnoses).
2. Do not divide individual medical events (e.g., keep "Aspirin 81mg daily" as one element).
3. If the text is not a list of similar items, return it as a single element.
The format should be as follows:
[
"element1",
"element2",
"element3",
...
]
Example:
Input: "Medications: Aspirin 81mg daily, Lisinopril 10mg once daily, Metformin 500mg twice daily"
Output: [
"Aspirin 81mg daily",
"Lisinopril 10mg once daily",
"Metformin 500mg twice daily"
]
Input: "Diagnosis: Type 2 Diabetes Mellitus"
Output: [
"Diagnosis: Type 2 Diabetes Mellitus"
]
----------------------------------
Event:
{event}
----------------------------------
ELEMENTS IN VALID JSON FORMAT: