Skip to content

AllergySensitivity

An allergy/sensitivity/preference for a client

Fields

category · String! · required · Enum field. Options: allergy, sensitivity, preference, intolerance, ccda
category_type · String · Type of allergy or like/dislike for preference. Options: food, drug, environmental, pet, latex, like, dislike
created_at · String! · required · Date/Time created
created_by · User · User who created this allergy
id · ID! · required · The unique identifier of the allergy
is_current · Boolean · If the allergy is current.
deprecated Use status instead
mirrored · Boolean! · required · If the allergy is synchronized with an external system (e.g., an E-Rx system)
name · String · The name of the allergy/sensitivity/preference
onset_date · String · The date of onset
reaction · String · Description of the reaction on the allergen
reaction_type · String · The type of the reaction. Options are [allergy, adverse_reaction]
requires_consolidation · Boolean · When true, this object must be consolidated as part of a CCDA Ingest
severity · String · The severity of the allergy. Options: mild, moderate, severe, unknown
status · String · The allergy's current status. Options are [active, inactive, resolved]
updated_at · String · Date/Time last updated

Used By

Definition

"""
An allergy/sensitivity/preference for a client
"""
type AllergySensitivity {
"""
Enum field. Options: allergy, sensitivity, preference, intolerance, ccda
"""
category: String!
"""
Type of allergy or like/dislike for preference. Options: food, drug, environmental, pet, latex, like, dislike
"""
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")
"""
If the allergy is synchronized with an external system (e.g., an E-Rx system)
"""
mirrored: Boolean!
"""
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. Options: mild, moderate, severe, unknown
"""
severity: String
"""
The allergy's current status. Options are [active, inactive, resolved]
"""
status: String
"""
Date/Time last updated
"""
updated_at: String
}