export interface MedicalEquipmentProperties {
  name: string; // medical consumable name (e.g. 2-Way Catheter 16FR)
  market_id: string;
  description?: string;
  supplier_id: string;
  supplier_name: string;
  producer?: string;
  packaging: string;
  packaging_size: number; // (e.g. 50)
  packaging_units: string; // (e.g. pks)
  category?: string; // (lowercase) category/family of the consumable (e.g. catheter)
}
