MedicationType
Medication belonging to client
Fields
directions   
·  String     · Directions to use medication entered by provider  normalized_status   
·  PrescriptionMedicationStatus     · The normalized status of the medication  requires_consolidation   
·  Boolean     · When true, this object must be consolidated as part of a CCDA Ingest  start_date   
·  String     · First active date of medication  updated_at   
·  String     · The last time the medication was updated  Used By
Definition
"""Medication belonging to client"""type MedicationType {  """  Indicates if medication is still active (medication can also be inactive if current date doesn't fall between start and end date)  """  active: Boolean
  """  CCDA code for this medication  """  code: String
  """  Comments entered by provider  """  comment: String
  """  The time the medication was created  """  created_at: String!
  """  Directions to use medication entered by provider  """  directions: String
  """  Dosage of medication entered by provider  """  dosage: String
  """  last date patient should be able to use medication  """  end_date: String
  """  Frequency of this medication  """  frequency: String
  """  The unique identifier of the medication  """  id: ID!
  """  If the medication is synchronized with an external system (e.g., an E-Rx system)  """  mirrored: Boolean!
  """  Name of medication  """  name: String
  """  The normalized status of the medication  """  normalized_status: PrescriptionMedicationStatus
  """  When true, this object must be consolidated as part of a CCDA Ingest  """  requires_consolidation: Boolean
  """  The way this medication is administered  """  route: String
  """  First active date of medication  """  start_date: String
  """  The last time the medication was updated  """  updated_at: String
  """  User ID of the client this medication belongs to  """  user_id: ID}