OBJECT

MedicationType

Medication belonging to client

link GraphQL Schema definition

  • 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!
  • # Name of medication
  • name: String
  • # 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
  • }