Skip to content

MedicationHistoryType

Medication history record from Surescripts via DoseSpot

Fields

days_supply · Int · Number of days the medication supply should last
directions · String · Instructions for taking the medication
dispensable_drug_id · ID · DoseSpot dispensable drug identifier
dispense_unit_description · String · Description of the dispense unit (e.g., Tablets)
display_name · String! · required · The display name of the medication
dose_form · String · The form of the medication (e.g., Tablet, Capsule)
drug_classification · String · The drug classification (e.g., ANTIHYPERTENSIVE)
effective_date · ISO8601Date · Date medication was effective
expiration_date · ISO8601DateTime · Expiration date of medication
id · ID! · required · DoseSpot's unique identifier for patient medication history
last_fill_date · ISO8601DateTime · Date medication was last filled
ndc · ID · National Drug Code (drug identifier)
no_substitutions · Boolean! · required · Whether substitutions were allowed for this medication
otc · Boolean! · required · Whether this is an over-the-counter medication
payer · String · PBM/Payer name
pharmacy_notes · String · Additional notes from the pharmacy
quantity · String · The quantity of medication prescribed
refills · String · Number of refills allowed
route · String · Method of administration (e.g., Oral)
rxcui · ID · RxNorm Concept Unique Identifier
schedule · String · DEA controlled substance schedule
written_date · ISO8601DateTime · The date when the prescription was written

Used By

Definition

"""
Medication history record from Surescripts via DoseSpot
"""
type MedicationHistoryType {
"""
Number of days the medication supply should last
"""
days_supply: Int
"""
Instructions for taking the medication
"""
directions: String
"""
DoseSpot dispensable drug identifier
"""
dispensable_drug_id: ID
"""
Description of the dispense unit (e.g., Tablets)
"""
dispense_unit_description: String
"""
The display name of the medication
"""
display_name: String!
"""
The form of the medication (e.g., Tablet, Capsule)
"""
dose_form: String
"""
The drug classification (e.g., ANTIHYPERTENSIVE)
"""
drug_classification: String
"""
Date medication was effective
"""
effective_date: ISO8601Date
"""
Expiration date of medication
"""
expiration_date: ISO8601DateTime
"""
DoseSpot's unique identifier for patient medication history
"""
id: ID!
"""
Date medication was last filled
"""
last_fill_date: ISO8601DateTime
"""
National Drug Code (drug identifier)
"""
ndc: ID
"""
Whether substitutions were allowed for this medication
"""
no_substitutions: Boolean!
"""
Whether this is an over-the-counter medication
"""
otc: Boolean!
"""
PBM/Payer name
"""
payer: String
"""
Additional notes from the pharmacy
"""
pharmacy_notes: String
"""
The quantity of medication prescribed
"""
quantity: String
"""
Number of refills allowed
"""
refills: String
"""
Method of administration (e.g., Oral)
"""
route: String
"""
RxNorm Concept Unique Identifier
"""
rxcui: ID
"""
DEA controlled substance schedule
"""
schedule: String
"""
The date when the prescription was written
"""
written_date: ISO8601DateTime
}