const { data: mk } = 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',
amount: { value: 10, unit: 'mg' },
synonym: ['Prinivil', 'Zestril'],
ingredient: [
{
item: {
system: 'http://www.nlm.nih.gov/research/umls/rxnorm',
code: '29046',
display: 'Lisinopril',
},
isActive: true,
strength: {
numerator: { value: 10, unit: 'mg' },
denominator: { value: 1, unit: 'tablet' },
},
},
],
intendedRoute: ['oral'],
cost: [
{ type: 'wholesale', source: 'AWP', cost: { value: 0.15, currency: 'USD' } },
{ type: 'retail', source: 'GoodRx', cost: { value: 0.85, currency: 'USD' } },
],
packaging: {
type: 'bottle',
quantity: { value: 100, unit: 'tablets' },
},
preparationInstruction: 'Store at room temperature. Protect from moisture.',
});