Information about the prescription that is used to verify a regulated product. This must be provided once per order and reflect the seller’s own records. Only approved orders can have prescriptions.

PrescriptionDetail

interface PrescriptionDetail {
    clinicId: string;
    expirationDate: string;
    prescriptionId: string;
    refillsRemaining: number;
    totalRefillsAuthorized: number;
    usageInstructions: string;
    writtenQuantity: number;
}

Properties

clinicId: string

The identifier for the clinic which provided the prescription used to verify the regulated product.

PrescriptionDetail

expirationDate: string

The expiration date of the prescription used to verify the regulated product, in ISO 8601 date time format.

PrescriptionDetail

prescriptionId: string

The identifier for the prescription used to verify the regulated product.

PrescriptionDetail

refillsRemaining: number

The number of refills remaining for the prescription used to verify the regulated product. If a prescription originally had 10 total refills, this value must be 10 for the first order, 9 for the second order, and 0 for the eleventh order. If a prescription originally had no refills, this value must be 0.

PrescriptionDetail

totalRefillsAuthorized: number

The total number of refills written in the original prescription used to verify the regulated product. If a prescription originally had no refills, this value must be 0.

PrescriptionDetail

usageInstructions: string

The instructions for the prescription as provided by the approver of the regulated product.

PrescriptionDetail

writtenQuantity: number

The number of units in each fill as provided in the prescription.

PrescriptionDetail