Documentation Index
Fetch the complete documentation index at: https://developer.eka.care/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Medication ontology links free-text drug mentions to Eka Care’s medication database — a curated catalogue of branded and generic drugs available in India, with their compositions, forms and manufacturers.| Property | Value |
|---|---|
ontology | medication |
version | v5.0 |
metadata | Optional |
When to use it
Use the medication ontology to code drug mentions from prescriptions, discharge summaries or clinical notes — for exampleDolo 650 or Paracetamol 500mg Tablet.
How it works
The query is segmented into brand name, salt, form and volume; candidates are retrieved from the medication database; and a hybrid matcher compares the parsed query against each candidate’s form, volume and salt. A drug links (is_linked: true) only when the brand matches and every required
attribute — volume, form and qualifiers — matches exactly.
The optional metadata field
metadata is not required, but it helps resolve ambiguous mentions:
| Key | Description |
|---|---|
form | Medication form, e.g. tablet, capsule, injection. |
generic_name | Generic / salt name of the drug. |
dose_unit | Dosage unit, e.g. mg, mcg, ml. |
dose_custom | Custom dosage string. |
Dolo 650 Tablet),
metadata adds little. It is most useful when the query is terse or the form is
implied.
Reading the results
Medication results do not use a numericscore — read the metadata instead:
term_id— the medication identifier (e.g.b-4117370658)is_linked—truewhen the drug is matched with all required attributesmetadata.generic_name,generic_composition,manufacturer_name,product_type,is_otc— catalogue detail for the drugmetadata.matching_breakdown— per-attribute match detail; when a drug does not link,uncoded_reasonexplains why (e.g.volume_mismatch)metadata.linking_requirements— attributes still needed to link confidently (e.g.form_needed)
query_breakdown showing the brand, form and
volume parsed from your request.
Example
A query ofDolo 650 with metadata: { "form": "tablet", "generic_name": "paracetamol", "dose_unit": "mg" } links to Dolo 650 Tablet
(b-4117370658), composition Paracetamol (650mg), with is_linked: true.

