const { data } = await clinik.medicationKnowledge.create({
code: {
system: 'http://www.nlm.nih.gov/research/umls/rxnorm',
code: '197361',
display: 'Lisinopril 10 MG Oral Tablet',
},
status: 'active',
doseForm: 'tablet',
manufacturer: 'Teva Pharmaceuticals',
ingredient: [
{
item: { code: '29046', display: 'Lisinopril' },
isActive: true,
strength: {
numerator: { value: 10, unit: 'mg' },
denominator: { value: 1, unit: 'tablet' },
},
},
],
intendedRoute: ['oral'],
cost: [
{ type: 'wholesale', cost: { value: 0.15, currency: 'USD' } },
{ type: 'retail', cost: { value: 0.85, currency: 'USD' } },
],
packaging: { type: 'bottle', quantity: { value: 100, unit: 'tablets' } },
});