OBJECT

AllergySensitivity

An allergy/sensitivity/preference for a client

link GraphQL Schema definition

  • type AllergySensitivity {
  • # Enum field. Options: allergy, sensitivity, preference
  • category: String!
  • # Type of allergy or like/dislike for preference
  • category_type: String
  • # Date/Time created
  • created_at: String!
  • # User who created this allergy
  • created_by: User
  • # The unique identifier of the allergy
  • id: ID!
  • # If the allergy is current.
  • is_current: Boolean @deprecated( reason: "Use status instead" )
  • # The name of the allergy/sensitivity/preference
  • name: String
  • # The date of onset
  • onset_date: String
  • # Description of the reaction on the allergen
  • reaction: String
  • # The type of the reaction. Options are [allergy, adverse_reaction]
  • reaction_type: String
  • # When true, this object must be consolidated as part of a CCDA Ingest
  • requires_consolidation: Boolean
  • # The severity of the allergy
  • severity: String
  • # The allergy's current status. Options are [active, inactive, resolved]
  • status: String
  • # Date/Time last updated
  • updated_at: String
  • }