@oystehr/sdk
Version:
Oystehr SDK
41 lines (39 loc) • 966 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
/**
* Medications
*/
export interface ErxV1MedicationSearchResponse {
medications?: {
/**
* The Photon identifier for the medication.
*/
id: string;
/**
* Human readible name of medication.
*/
name: string;
codes: {
/**
* RxNorm Concept Unique (RxCUI) identifier of medication.
*/
rxcui?: string | null;
productNDC?: string | null;
packageNDC?: string | null;
SKU?: string | null;
HCPCS?: string | null;
};
/**
* Null implies a medication can not be prescribed
*/
type?: ('RX' | 'OTC') | null;
concept: 'DRUG' | 'PRODUCT' | 'PACKAGE';
schedule?: ('I' | 'II' | 'III' | 'IV' | 'V') | null;
controlled: boolean;
brandName?: string | null;
genericName?: string | null;
strength?: string | null;
form?: string | null;
manufacturer?: string | null;
description?: string | null;
}[];
}