Uzbekistan Digital Health Platform
0.5.0 - ci-build
Uzbekistan Digital Health Platform, published by Ministry of Health of the Republic of Uzbekistan. This guide is not an authorized publication; it is the continuous build for version 0.5.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/uzinfocom-org/digital-health-ig/ and changes regularly. See the Directory of published versions
| Official URL: https://dhp.uz/fhir/core/StructureDefinition/uz-core-adverse-event | Version: 0.5.0 | ||||
| Active as of 2025-08-01 | Computable Name: UZCoreAdverseEvent | ||||
Uzbekistan Core AdverseEvent profile, used to represent an adverse event that may be associated with unintended consequences for a patient or research participant.
UZ Core AdverseEvent records an adverse event such as a post-immunization reaction on the Digital Health Platform. It references the suspected entity that may have caused it - for a vaccine reaction this is the Immunization - and it may be accompanied by an Observation or Condition describing the reaction itself. It identifies the Patient affected and the Practitioner who recorded it. The event can be an actual harm or an intercepted near-miss.
The elements below must always be present (mandatory) or must be supported when the data is available (Must Support) - not all are required, but your system must populate each Must Support element when it has the data and process it on receipt. This is the human-readable summary; the formal views below give the exact cardinalities, types, and terminology bindings.
This profile adds no mandatory cardinality of its own. The required elements are inherited from the base resource: the status of the record (1..1), the actuality - actual harm versus a potential near-miss (1..1) - and the subject the event happened to (1..1). In practice you will also always populate the suspect entity (see Must Support below).
For a post-immunization reaction, point the suspect entity at the Immunization and use resulting effect to link the Condition or Observation that describes the reaction.
The examples below go from the smallest instance the server will accept to a full adverse-event record. Copy one and adapt it - every value shown validates against this profile. The complete reference instances are linked at the bottom of the page (fatal anaphylaxis, averted medication error).
The base resource requires the status of the record, the actuality (was it an actual harm or a potential near-miss?), and the subject it happened to; an adverse event is only meaningful when you also add the suspectEntity thought to have caused it. Note that status and actuality are plain codes, not CodeableConcept - send the bare string. Every UZ Core resource must also name the profile it claims to conform to in meta.profile:
{
"resourceType": "AdverseEvent",
"meta": { "profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-adverse-event"] },
"status": "in-progress",
"actuality": "potential",
"subject": { "reference": "Patient/example-salim" },
"suspectEntity": [
{ "instanceReference": { "reference": "Medication/example-prednisone" } }
]
}
status (registered, in-progress, completed …) and actuality (actual / potential) each use a required binding - the value must come from the bound value set. suspectEntity.instance[x] is the instance suspected of causing the event; here a Medication, but for a post-immunization reaction it is the Immunization, and it may also be a Procedure, Substance, Device, or MedicationAdministration. It is a plain Reference, so instanceReference holds { "reference": "Type/id" } directly.
For a real event that reached the patient, fill in when it happened (occurrenceDateTime), when it was detected, the recordedDate, the encounter and location, the resultingEffect (the Condition or Observation the event caused), the seriousness and outcome, the recorder, and the participant who reported it:
{
"resourceType": "AdverseEvent",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-adverse-event" ] },
"status": "completed",
"actuality": "actual",
"subject": { "reference": "Patient/example-david" },
"encounter": { "reference": "Encounter/example-encounter" },
"occurrenceDateTime": "2026-04-30T10:30:00+05:00",
"detected": "2026-04-30T10:45:00+05:00",
"recordedDate": "2026-04-30T11:15:00+05:00",
"resultingEffect": [ { "reference": "Condition/example-anaphylaxis" } ],
"location": { "reference": "Location/example-location" },
"seriousness": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/adverse-event-seriousness",
"code": "serious",
"display": "Serious"
}
]
},
"outcome": [
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "405535005",
"display": "Adverse incident resulting in death"
}
]
}
],
"recorder": { "reference": "Practitioner/example-practitioner" },
"participant": [
{
"function": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code": "AUT",
"display": "author (originator)"
}
]
},
"actor": { "reference": "Practitioner/example-practitioner" }
}
],
"suspectEntity": [ { "instanceReference": { "reference": "Medication/example-amoxicillin" } } ],
"note": [
{
"text": "Patient developed anaphylaxis shortly after amoxicillin administration and died despite resuscitation efforts."
}
]
}
Unlike seriousness and outcome, which are CodeableConcept (here outcome uses SNOMED CT, seriousness the HL7 seriousness code system), resultingEffect, subject, encounter, location, recorder, and participant.actor are all plain References - { "reference": "Type/id" }, with no extra nesting. participant.function carries why that person was involved (here AUT, the author who recorded it).
An intercepted event that never reached the patient is recorded the same way, but with actuality set to potential. There is no resultingEffect (nothing happened to the patient) and outcome is omitted; use note to explain how it was caught. The suspectEntity still points at what would have caused the harm:
{
"resourceType": "AdverseEvent",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-adverse-event" ] },
"status": "in-progress",
"actuality": "potential",
"subject": { "reference": "Patient/example-salim" },
"encounter": { "reference": "Encounter/example-encounter" },
"occurrenceDateTime": "2026-04-30T10:30:00+05:00",
"detected": "2026-04-30T10:35:00+05:00",
"recordedDate": "2026-04-30T11:15:00+05:00",
"location": { "reference": "Location/example-location-1" },
"seriousness": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/adverse-event-seriousness",
"code": "serious",
"display": "Serious"
}
]
},
"recorder": { "reference": "Practitioner/example-practitioner" },
"suspectEntity": [ { "instanceReference": { "reference": "Medication/example-prednisone" } } ],
"note": [
{
"text": "Prednisone ordered despite a documented contraindication; pharmacy intercepted it before it reached the patient."
}
]
}
A near-miss is still worth recording: the seriousness reflects how bad it would have been, and detected captures when the safety net caught it. See Missing & suppressed data for when to leave an element out versus mark it absent.
For example API calls and a sample payload, see the Quick Start at the bottom of this page.
Usages:
You can also check for usages in the FHIR IG Statistics
Description Differentials, Snapshots, and other representations.
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | AdverseEvent(5.0.0) | An event that may be related to unintended effects on a patient or research participant | |
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created |
![]() ![]() |
0..* | Resource | Contained, inline Resources | |
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
SΣ | 0..* | Identifier | Business identifier for the event |
![]() ![]() |
?!SΣ | 1..1 | code | in-progress | completed | entered-in-error | unknown Binding: AdverseEventStatusVS (0.5.0) (required) |
![]() ![]() |
?!SΣ | 1..1 | code | actual | potential Binding: AdverseEventActualityVS (0.5.0) (required) |
![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0) | Group | UZ Core Practitioner(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Subject impacted by event |
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Encounter(0.5.0)) | The Encounter associated with the start of the AdverseEvent |
![]() ![]() |
SΣ | 0..1 | When the event occurred | |
![]() ![]() ![]() |
dateTime | |||
![]() ![]() ![]() |
Period | |||
![]() ![]() ![]() |
Timing | |||
![]() ![]() |
SΣ | 0..1 | dateTime | When the event was detected |
![]() ![]() |
SΣ | 0..1 | dateTime | When the event was recorded |
![]() ![]() |
SΣ | 0..* | Reference(UZ Core Condition(0.5.0) | UZ Core Observation(0.5.0)) | Effect on the subject due to this event |
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Location(0.5.0)) | Location where adverse event occurred |
![]() ![]() |
SΣ | 0..1 | CodeableConcept | Seriousness or gravity of the event Binding: AdverseEventSeriousnessVS (0.5.0) (example) |
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of outcome from the adverse event Binding: AdverseEventOutcomeVS (0.5.0) (example) |
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Patient(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core PractitionerRole(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Who recorded the adverse event |
![]() ![]() |
SΣ | 0..* | BackboneElement | Who was involved in the adverse event or the potential adverse event and what they did |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | CodeableConcept | Type of involvement Binding: AdverseEventParticipantFunction (example) |
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core PractitionerRole(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Who was involved in the adverse event or the potential adverse event |
![]() ![]() |
SΣ | 0..* | BackboneElement | The suspected agent causing the adverse event |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Immunization(0.5.0) | UZ Core Procedure(0.5.0) | Substance | Medication | MedicationAdministration | MedicationStatement | Device | BiologicallyDerivedProduct | ResearchStudy) | Refers to the specific entity that caused the adverse event |
![]() ![]() |
SΣ | 0..* | Annotation | Comment on adverse event |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| AdverseEvent.status | Base | required | Types of AdverseEvent status | 📍0.5.0 | This IG |
| AdverseEvent.actuality | Base | required | Types of AdverseEvent actuality | 📍0.5.0 | This IG |
| AdverseEvent.seriousness | Base | example | Types of AdverseEvent seriousness | 📍0.5.0 | This IG |
| AdverseEvent.outcome | Base | example | Types of AdverseEvent outcome | 📍0.5.0 | This IG |
| AdverseEvent.participant.function | Base | example | AdverseEvent Participant Function | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | AdverseEvent | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | AdverseEvent | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | AdverseEvent | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | AdverseEvent | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | AdverseEvent | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | AdverseEvent.implicitRules, AdverseEvent.modifierExtension, AdverseEvent.identifier, AdverseEvent.status, AdverseEvent.actuality, AdverseEvent.subject, AdverseEvent.encounter, AdverseEvent.occurrence[x], AdverseEvent.detected, AdverseEvent.recordedDate, AdverseEvent.resultingEffect, AdverseEvent.location, AdverseEvent.seriousness, AdverseEvent.outcome, AdverseEvent.recorder, AdverseEvent.participant, AdverseEvent.participant.modifierExtension, AdverseEvent.participant.function, AdverseEvent.participant.actor, AdverseEvent.suspectEntity, AdverseEvent.suspectEntity.modifierExtension, AdverseEvent.suspectEntity.instance[x], AdverseEvent.note | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | AdverseEvent.modifierExtension, AdverseEvent.participant.modifierExtension, AdverseEvent.suspectEntity.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| Path | Status | Usage | ValueSet | Version | Source |
| AdverseEvent.status | Base | required | Types of AdverseEvent status | 📍0.5.0 | This IG |
| AdverseEvent.actuality | Base | required | Types of AdverseEvent actuality | 📍0.5.0 | This IG |
| AdverseEvent.seriousness | Base | example | Types of AdverseEvent seriousness | 📍0.5.0 | This IG |
| AdverseEvent.outcome | Base | example | Types of AdverseEvent outcome | 📍0.5.0 | This IG |
| AdverseEvent.participant.function | Base | example | AdverseEvent Participant Function | 📍5.0.0 | FHIR Std. |
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
0..* | AdverseEvent(5.0.0) | An event that may be related to unintended effects on a patient or research participant | |||||
![]() ![]() |
Σ | 0..1 | id | Logical id of this artifact | ||||
![]() ![]() |
Σ | 0..1 | Meta | Metadata about the resource | ||||
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created | ||||
![]() ![]() |
0..1 | code | Language of the resource content Binding: AllLanguages (required): IETF language tag for a human language
| |||||
![]() ![]() |
0..1 | Narrative | Text summary of the resource, for human interpretation This profile does not constrain the narrative in regard to content, language, or traceability to data elements | |||||
![]() ![]() |
0..* | Resource | Contained, inline Resources | |||||
![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
SΣ | 0..* | Identifier | Business identifier for the event | ||||
![]() ![]() |
?!SΣ | 1..1 | code | in-progress | completed | entered-in-error | unknown Binding: AdverseEventStatusVS (0.5.0) (required) | ||||
![]() ![]() |
?!SΣ | 1..1 | code | actual | potential Binding: AdverseEventActualityVS (0.5.0) (required) | ||||
![]() ![]() |
Σ | 0..* | CodeableConcept | wrong-patient | procedure-mishap | medication-mishap | device | unsafe-physical-environment | hospital-aquired-infection | wrong-body-site Binding: AdverseEventCategory (example): Overall categorization of the event, e.g. product-related or situational. | ||||
![]() ![]() |
Σ | 0..1 | CodeableConcept | Event or incident that occurred or was averted Binding: AdverseEventType (example): Detailed type of event. | ||||
![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0) | Group | UZ Core Practitioner(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Subject impacted by event | ||||
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Encounter(0.5.0)) | The Encounter associated with the start of the AdverseEvent | ||||
![]() ![]() |
SΣ | 0..1 | When the event occurred | |||||
![]() ![]() ![]() |
dateTime | |||||||
![]() ![]() ![]() |
Period | |||||||
![]() ![]() ![]() |
Timing | |||||||
![]() ![]() |
SΣ | 0..1 | dateTime | When the event was detected | ||||
![]() ![]() |
SΣ | 0..1 | dateTime | When the event was recorded | ||||
![]() ![]() |
SΣ | 0..* | Reference(UZ Core Condition(0.5.0) | UZ Core Observation(0.5.0)) | Effect on the subject due to this event | ||||
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Location(0.5.0)) | Location where adverse event occurred | ||||
![]() ![]() |
SΣ | 0..1 | CodeableConcept | Seriousness or gravity of the event Binding: AdverseEventSeriousnessVS (0.5.0) (example) | ||||
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of outcome from the adverse event Binding: AdverseEventOutcomeVS (0.5.0) (example) | ||||
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Patient(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core PractitionerRole(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Who recorded the adverse event | ||||
![]() ![]() |
SΣ | 0..* | BackboneElement | Who was involved in the adverse event or the potential adverse event and what they did | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
SΣ | 0..1 | CodeableConcept | Type of involvement Binding: AdverseEventParticipantFunction (example) | ||||
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core PractitionerRole(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Who was involved in the adverse event or the potential adverse event | ||||
![]() ![]() |
Σ | 0..* | Reference(ResearchStudy) | Research study that the subject is enrolled in | ||||
![]() ![]() |
0..1 | boolean | Considered likely or probable or anticipated in the research study | |||||
![]() ![]() |
SΣ | 0..* | BackboneElement | The suspected agent causing the adverse event | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Immunization(0.5.0) | UZ Core Procedure(0.5.0) | Substance | Medication | MedicationAdministration | MedicationStatement | Device | BiologicallyDerivedProduct | ResearchStudy) | Refers to the specific entity that caused the adverse event | ||||
![]() ![]() ![]() |
Σ | 0..1 | BackboneElement | Information on the possible cause of the event | ||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | CodeableConcept | Method of evaluating the relatedness of the suspected entity to the event Binding: AdverseEventCausalityMethod (example): TODO. | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | CodeableConcept | Result of the assessment regarding the relatedness of the suspected entity to the event Binding: AdverseEventCausalityAssessment (example): Codes for the assessment of whether the entity caused the event. | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Practitioner | PractitionerRole | Patient | RelatedPerson | ResearchSubject) | Author of the information on the possible cause of the event | ||||
![]() ![]() |
Σ | 0..* | BackboneElement | Contributing factors suspected to have increased the probability or severity of the adverse event | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | Item suspected to have increased the probability or severity of the adverse event Binding: AdverseEventContributingFactor (example): Codes describing the contributing factors suspected to have increased the probability or severity of the adverse event. | |||||
![]() ![]() ![]() ![]() |
Reference(Condition | Observation | AllergyIntolerance | FamilyMemberHistory | Immunization | Procedure | Device | DeviceUsage | DocumentReference | MedicationAdministration | MedicationStatement) | |||||||
![]() ![]() ![]() ![]() |
CodeableConcept | |||||||
![]() ![]() |
Σ | 0..* | BackboneElement | Preventive actions that contributed to avoiding the adverse event | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | Action that contributed to avoiding the adverse event Binding: AdverseEventPreventiveAction (example): Codes describing the preventive actions that contributed to avoiding the adverse event. | |||||
![]() ![]() ![]() ![]() |
Reference(Immunization | Procedure | DocumentReference | MedicationAdministration | MedicationRequest) | |||||||
![]() ![]() ![]() ![]() |
CodeableConcept | |||||||
![]() ![]() |
Σ | 0..* | BackboneElement | Ameliorating actions taken after the adverse event occured in order to reduce the extent of harm | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | Ameliorating action taken after the adverse event occured in order to reduce the extent of harm Binding: AdverseEventMitigatingAction (example): Codes describing the ameliorating actions taken after the adverse event occured in order to reduce the extent of harm. | |||||
![]() ![]() ![]() ![]() |
Reference(Procedure | DocumentReference | MedicationAdministration | MedicationRequest) | |||||||
![]() ![]() ![]() ![]() |
CodeableConcept | |||||||
![]() ![]() |
Σ | 0..* | BackboneElement | Supporting information relevant to the event | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | Subject medical history or document relevant to this adverse event Binding: AdverseEventSupportingInforation (example): Codes describing the supporting information relevant to the event. | |||||
![]() ![]() ![]() ![]() |
Reference(Condition | Observation | AllergyIntolerance | FamilyMemberHistory | Immunization | Procedure | DocumentReference | MedicationAdministration | MedicationStatement | QuestionnaireResponse) | |||||||
![]() ![]() ![]() ![]() |
CodeableConcept | |||||||
![]() ![]() |
SΣ | 0..* | Annotation | Comment on adverse event | ||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| AdverseEvent.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| AdverseEvent.status | Base | required | Types of AdverseEvent status | 📍0.5.0 | This IG |
| AdverseEvent.actuality | Base | required | Types of AdverseEvent actuality | 📍0.5.0 | This IG |
| AdverseEvent.category | Base | example | Adverse Event Category | 📍5.0.0 | FHIR Std. |
| AdverseEvent.code | Base | example | AdverseEvent Type | 📍5.0.0 | FHIR Std. |
| AdverseEvent.seriousness | Base | example | Types of AdverseEvent seriousness | 📍0.5.0 | This IG |
| AdverseEvent.outcome | Base | example | Types of AdverseEvent outcome | 📍0.5.0 | This IG |
| AdverseEvent.participant.function | Base | example | AdverseEvent Participant Function | 📍5.0.0 | FHIR Std. |
| AdverseEvent.suspectEntity.causality.assessmentMethod | Base | example | Adverse Event Causality Method | 📍5.0.0 | FHIR Std. |
| AdverseEvent.suspectEntity.causality.entityRelatedness | Base | example | Adverse Event Causality Assessment | 📍5.0.0 | FHIR Std. |
| AdverseEvent.contributingFactor.item[x] | Base | example | AdverseEvent Contributing Factor | 📍5.0.0 | FHIR Std. |
| AdverseEvent.preventiveAction.item[x] | Base | example | AdverseEvent Preventive Action | 📍5.0.0 | FHIR Std. |
| AdverseEvent.mitigatingAction.item[x] | Base | example | AdverseEvent Mitigating Action | 📍5.0.0 | FHIR Std. |
| AdverseEvent.supportingInfo.item[x] | Base | example | AdverseEvent Supporting Information | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | AdverseEvent | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | AdverseEvent | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | AdverseEvent | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | AdverseEvent | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | AdverseEvent | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | AdverseEvent.meta, AdverseEvent.implicitRules, AdverseEvent.language, AdverseEvent.text, AdverseEvent.extension, AdverseEvent.modifierExtension, AdverseEvent.identifier, AdverseEvent.status, AdverseEvent.actuality, AdverseEvent.category, AdverseEvent.code, AdverseEvent.subject, AdverseEvent.encounter, AdverseEvent.occurrence[x], AdverseEvent.detected, AdverseEvent.recordedDate, AdverseEvent.resultingEffect, AdverseEvent.location, AdverseEvent.seriousness, AdverseEvent.outcome, AdverseEvent.recorder, AdverseEvent.participant, AdverseEvent.participant.extension, AdverseEvent.participant.modifierExtension, AdverseEvent.participant.function, AdverseEvent.participant.actor, AdverseEvent.study, AdverseEvent.expectedInResearchStudy, AdverseEvent.suspectEntity, AdverseEvent.suspectEntity.extension, AdverseEvent.suspectEntity.modifierExtension, AdverseEvent.suspectEntity.instance[x], AdverseEvent.suspectEntity.causality, AdverseEvent.suspectEntity.causality.extension, AdverseEvent.suspectEntity.causality.modifierExtension, AdverseEvent.suspectEntity.causality.assessmentMethod, AdverseEvent.suspectEntity.causality.entityRelatedness, AdverseEvent.suspectEntity.causality.author, AdverseEvent.contributingFactor, AdverseEvent.contributingFactor.extension, AdverseEvent.contributingFactor.modifierExtension, AdverseEvent.contributingFactor.item[x], AdverseEvent.preventiveAction, AdverseEvent.preventiveAction.extension, AdverseEvent.preventiveAction.modifierExtension, AdverseEvent.preventiveAction.item[x], AdverseEvent.mitigatingAction, AdverseEvent.mitigatingAction.extension, AdverseEvent.mitigatingAction.modifierExtension, AdverseEvent.mitigatingAction.item[x], AdverseEvent.supportingInfo, AdverseEvent.supportingInfo.extension, AdverseEvent.supportingInfo.modifierExtension, AdverseEvent.supportingInfo.item[x], AdverseEvent.note | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | AdverseEvent.extension, AdverseEvent.modifierExtension, AdverseEvent.participant.extension, AdverseEvent.participant.modifierExtension, AdverseEvent.suspectEntity.extension, AdverseEvent.suspectEntity.modifierExtension, AdverseEvent.suspectEntity.causality.extension, AdverseEvent.suspectEntity.causality.modifierExtension, AdverseEvent.contributingFactor.extension, AdverseEvent.contributingFactor.modifierExtension, AdverseEvent.preventiveAction.extension, AdverseEvent.preventiveAction.modifierExtension, AdverseEvent.mitigatingAction.extension, AdverseEvent.mitigatingAction.modifierExtension, AdverseEvent.supportingInfo.extension, AdverseEvent.supportingInfo.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
Summary
Must-Support: 19 elements
Structures
This structure refers to these other structures:
Key Elements View
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | AdverseEvent(5.0.0) | An event that may be related to unintended effects on a patient or research participant | |
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created |
![]() ![]() |
0..* | Resource | Contained, inline Resources | |
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
SΣ | 0..* | Identifier | Business identifier for the event |
![]() ![]() |
?!SΣ | 1..1 | code | in-progress | completed | entered-in-error | unknown Binding: AdverseEventStatusVS (0.5.0) (required) |
![]() ![]() |
?!SΣ | 1..1 | code | actual | potential Binding: AdverseEventActualityVS (0.5.0) (required) |
![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0) | Group | UZ Core Practitioner(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Subject impacted by event |
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Encounter(0.5.0)) | The Encounter associated with the start of the AdverseEvent |
![]() ![]() |
SΣ | 0..1 | When the event occurred | |
![]() ![]() ![]() |
dateTime | |||
![]() ![]() ![]() |
Period | |||
![]() ![]() ![]() |
Timing | |||
![]() ![]() |
SΣ | 0..1 | dateTime | When the event was detected |
![]() ![]() |
SΣ | 0..1 | dateTime | When the event was recorded |
![]() ![]() |
SΣ | 0..* | Reference(UZ Core Condition(0.5.0) | UZ Core Observation(0.5.0)) | Effect on the subject due to this event |
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Location(0.5.0)) | Location where adverse event occurred |
![]() ![]() |
SΣ | 0..1 | CodeableConcept | Seriousness or gravity of the event Binding: AdverseEventSeriousnessVS (0.5.0) (example) |
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of outcome from the adverse event Binding: AdverseEventOutcomeVS (0.5.0) (example) |
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Patient(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core PractitionerRole(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Who recorded the adverse event |
![]() ![]() |
SΣ | 0..* | BackboneElement | Who was involved in the adverse event or the potential adverse event and what they did |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | CodeableConcept | Type of involvement Binding: AdverseEventParticipantFunction (example) |
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core PractitionerRole(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Who was involved in the adverse event or the potential adverse event |
![]() ![]() |
SΣ | 0..* | BackboneElement | The suspected agent causing the adverse event |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Immunization(0.5.0) | UZ Core Procedure(0.5.0) | Substance | Medication | MedicationAdministration | MedicationStatement | Device | BiologicallyDerivedProduct | ResearchStudy) | Refers to the specific entity that caused the adverse event |
![]() ![]() |
SΣ | 0..* | Annotation | Comment on adverse event |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| AdverseEvent.status | Base | required | Types of AdverseEvent status | 📍0.5.0 | This IG |
| AdverseEvent.actuality | Base | required | Types of AdverseEvent actuality | 📍0.5.0 | This IG |
| AdverseEvent.seriousness | Base | example | Types of AdverseEvent seriousness | 📍0.5.0 | This IG |
| AdverseEvent.outcome | Base | example | Types of AdverseEvent outcome | 📍0.5.0 | This IG |
| AdverseEvent.participant.function | Base | example | AdverseEvent Participant Function | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | AdverseEvent | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | AdverseEvent | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | AdverseEvent | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | AdverseEvent | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | AdverseEvent | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | AdverseEvent.implicitRules, AdverseEvent.modifierExtension, AdverseEvent.identifier, AdverseEvent.status, AdverseEvent.actuality, AdverseEvent.subject, AdverseEvent.encounter, AdverseEvent.occurrence[x], AdverseEvent.detected, AdverseEvent.recordedDate, AdverseEvent.resultingEffect, AdverseEvent.location, AdverseEvent.seriousness, AdverseEvent.outcome, AdverseEvent.recorder, AdverseEvent.participant, AdverseEvent.participant.modifierExtension, AdverseEvent.participant.function, AdverseEvent.participant.actor, AdverseEvent.suspectEntity, AdverseEvent.suspectEntity.modifierExtension, AdverseEvent.suspectEntity.instance[x], AdverseEvent.note | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | AdverseEvent.modifierExtension, AdverseEvent.participant.modifierExtension, AdverseEvent.suspectEntity.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
Differential View
| Path | Status | Usage | ValueSet | Version | Source |
| AdverseEvent.status | Base | required | Types of AdverseEvent status | 📍0.5.0 | This IG |
| AdverseEvent.actuality | Base | required | Types of AdverseEvent actuality | 📍0.5.0 | This IG |
| AdverseEvent.seriousness | Base | example | Types of AdverseEvent seriousness | 📍0.5.0 | This IG |
| AdverseEvent.outcome | Base | example | Types of AdverseEvent outcome | 📍0.5.0 | This IG |
| AdverseEvent.participant.function | Base | example | AdverseEvent Participant Function | 📍5.0.0 | FHIR Std. |
Snapshot ViewView
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
0..* | AdverseEvent(5.0.0) | An event that may be related to unintended effects on a patient or research participant | |||||
![]() ![]() |
Σ | 0..1 | id | Logical id of this artifact | ||||
![]() ![]() |
Σ | 0..1 | Meta | Metadata about the resource | ||||
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created | ||||
![]() ![]() |
0..1 | code | Language of the resource content Binding: AllLanguages (required): IETF language tag for a human language
| |||||
![]() ![]() |
0..1 | Narrative | Text summary of the resource, for human interpretation This profile does not constrain the narrative in regard to content, language, or traceability to data elements | |||||
![]() ![]() |
0..* | Resource | Contained, inline Resources | |||||
![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
SΣ | 0..* | Identifier | Business identifier for the event | ||||
![]() ![]() |
?!SΣ | 1..1 | code | in-progress | completed | entered-in-error | unknown Binding: AdverseEventStatusVS (0.5.0) (required) | ||||
![]() ![]() |
?!SΣ | 1..1 | code | actual | potential Binding: AdverseEventActualityVS (0.5.0) (required) | ||||
![]() ![]() |
Σ | 0..* | CodeableConcept | wrong-patient | procedure-mishap | medication-mishap | device | unsafe-physical-environment | hospital-aquired-infection | wrong-body-site Binding: AdverseEventCategory (example): Overall categorization of the event, e.g. product-related or situational. | ||||
![]() ![]() |
Σ | 0..1 | CodeableConcept | Event or incident that occurred or was averted Binding: AdverseEventType (example): Detailed type of event. | ||||
![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0) | Group | UZ Core Practitioner(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Subject impacted by event | ||||
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Encounter(0.5.0)) | The Encounter associated with the start of the AdverseEvent | ||||
![]() ![]() |
SΣ | 0..1 | When the event occurred | |||||
![]() ![]() ![]() |
dateTime | |||||||
![]() ![]() ![]() |
Period | |||||||
![]() ![]() ![]() |
Timing | |||||||
![]() ![]() |
SΣ | 0..1 | dateTime | When the event was detected | ||||
![]() ![]() |
SΣ | 0..1 | dateTime | When the event was recorded | ||||
![]() ![]() |
SΣ | 0..* | Reference(UZ Core Condition(0.5.0) | UZ Core Observation(0.5.0)) | Effect on the subject due to this event | ||||
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Location(0.5.0)) | Location where adverse event occurred | ||||
![]() ![]() |
SΣ | 0..1 | CodeableConcept | Seriousness or gravity of the event Binding: AdverseEventSeriousnessVS (0.5.0) (example) | ||||
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of outcome from the adverse event Binding: AdverseEventOutcomeVS (0.5.0) (example) | ||||
![]() ![]() |
SΣ | 0..1 | Reference(UZ Core Patient(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core PractitionerRole(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Who recorded the adverse event | ||||
![]() ![]() |
SΣ | 0..* | BackboneElement | Who was involved in the adverse event or the potential adverse event and what they did | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
SΣ | 0..1 | CodeableConcept | Type of involvement Binding: AdverseEventParticipantFunction (example) | ||||
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core PractitionerRole(0.5.0) | UZ Core RelatedPerson(0.5.0) | ResearchSubject) | Who was involved in the adverse event or the potential adverse event | ||||
![]() ![]() |
Σ | 0..* | Reference(ResearchStudy) | Research study that the subject is enrolled in | ||||
![]() ![]() |
0..1 | boolean | Considered likely or probable or anticipated in the research study | |||||
![]() ![]() |
SΣ | 0..* | BackboneElement | The suspected agent causing the adverse event | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Immunization(0.5.0) | UZ Core Procedure(0.5.0) | Substance | Medication | MedicationAdministration | MedicationStatement | Device | BiologicallyDerivedProduct | ResearchStudy) | Refers to the specific entity that caused the adverse event | ||||
![]() ![]() ![]() |
Σ | 0..1 | BackboneElement | Information on the possible cause of the event | ||||
![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | CodeableConcept | Method of evaluating the relatedness of the suspected entity to the event Binding: AdverseEventCausalityMethod (example): TODO. | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | CodeableConcept | Result of the assessment regarding the relatedness of the suspected entity to the event Binding: AdverseEventCausalityAssessment (example): Codes for the assessment of whether the entity caused the event. | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Practitioner | PractitionerRole | Patient | RelatedPerson | ResearchSubject) | Author of the information on the possible cause of the event | ||||
![]() ![]() |
Σ | 0..* | BackboneElement | Contributing factors suspected to have increased the probability or severity of the adverse event | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | Item suspected to have increased the probability or severity of the adverse event Binding: AdverseEventContributingFactor (example): Codes describing the contributing factors suspected to have increased the probability or severity of the adverse event. | |||||
![]() ![]() ![]() ![]() |
Reference(Condition | Observation | AllergyIntolerance | FamilyMemberHistory | Immunization | Procedure | Device | DeviceUsage | DocumentReference | MedicationAdministration | MedicationStatement) | |||||||
![]() ![]() ![]() ![]() |
CodeableConcept | |||||||
![]() ![]() |
Σ | 0..* | BackboneElement | Preventive actions that contributed to avoiding the adverse event | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | Action that contributed to avoiding the adverse event Binding: AdverseEventPreventiveAction (example): Codes describing the preventive actions that contributed to avoiding the adverse event. | |||||
![]() ![]() ![]() ![]() |
Reference(Immunization | Procedure | DocumentReference | MedicationAdministration | MedicationRequest) | |||||||
![]() ![]() ![]() ![]() |
CodeableConcept | |||||||
![]() ![]() |
Σ | 0..* | BackboneElement | Ameliorating actions taken after the adverse event occured in order to reduce the extent of harm | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | Ameliorating action taken after the adverse event occured in order to reduce the extent of harm Binding: AdverseEventMitigatingAction (example): Codes describing the ameliorating actions taken after the adverse event occured in order to reduce the extent of harm. | |||||
![]() ![]() ![]() ![]() |
Reference(Procedure | DocumentReference | MedicationAdministration | MedicationRequest) | |||||||
![]() ![]() ![]() ![]() |
CodeableConcept | |||||||
![]() ![]() |
Σ | 0..* | BackboneElement | Supporting information relevant to the event | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
Σ | 1..1 | Subject medical history or document relevant to this adverse event Binding: AdverseEventSupportingInforation (example): Codes describing the supporting information relevant to the event. | |||||
![]() ![]() ![]() ![]() |
Reference(Condition | Observation | AllergyIntolerance | FamilyMemberHistory | Immunization | Procedure | DocumentReference | MedicationAdministration | MedicationStatement | QuestionnaireResponse) | |||||||
![]() ![]() ![]() ![]() |
CodeableConcept | |||||||
![]() ![]() |
SΣ | 0..* | Annotation | Comment on adverse event | ||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| AdverseEvent.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| AdverseEvent.status | Base | required | Types of AdverseEvent status | 📍0.5.0 | This IG |
| AdverseEvent.actuality | Base | required | Types of AdverseEvent actuality | 📍0.5.0 | This IG |
| AdverseEvent.category | Base | example | Adverse Event Category | 📍5.0.0 | FHIR Std. |
| AdverseEvent.code | Base | example | AdverseEvent Type | 📍5.0.0 | FHIR Std. |
| AdverseEvent.seriousness | Base | example | Types of AdverseEvent seriousness | 📍0.5.0 | This IG |
| AdverseEvent.outcome | Base | example | Types of AdverseEvent outcome | 📍0.5.0 | This IG |
| AdverseEvent.participant.function | Base | example | AdverseEvent Participant Function | 📍5.0.0 | FHIR Std. |
| AdverseEvent.suspectEntity.causality.assessmentMethod | Base | example | Adverse Event Causality Method | 📍5.0.0 | FHIR Std. |
| AdverseEvent.suspectEntity.causality.entityRelatedness | Base | example | Adverse Event Causality Assessment | 📍5.0.0 | FHIR Std. |
| AdverseEvent.contributingFactor.item[x] | Base | example | AdverseEvent Contributing Factor | 📍5.0.0 | FHIR Std. |
| AdverseEvent.preventiveAction.item[x] | Base | example | AdverseEvent Preventive Action | 📍5.0.0 | FHIR Std. |
| AdverseEvent.mitigatingAction.item[x] | Base | example | AdverseEvent Mitigating Action | 📍5.0.0 | FHIR Std. |
| AdverseEvent.supportingInfo.item[x] | Base | example | AdverseEvent Supporting Information | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | AdverseEvent | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | AdverseEvent | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | AdverseEvent | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | AdverseEvent | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | AdverseEvent | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | AdverseEvent.meta, AdverseEvent.implicitRules, AdverseEvent.language, AdverseEvent.text, AdverseEvent.extension, AdverseEvent.modifierExtension, AdverseEvent.identifier, AdverseEvent.status, AdverseEvent.actuality, AdverseEvent.category, AdverseEvent.code, AdverseEvent.subject, AdverseEvent.encounter, AdverseEvent.occurrence[x], AdverseEvent.detected, AdverseEvent.recordedDate, AdverseEvent.resultingEffect, AdverseEvent.location, AdverseEvent.seriousness, AdverseEvent.outcome, AdverseEvent.recorder, AdverseEvent.participant, AdverseEvent.participant.extension, AdverseEvent.participant.modifierExtension, AdverseEvent.participant.function, AdverseEvent.participant.actor, AdverseEvent.study, AdverseEvent.expectedInResearchStudy, AdverseEvent.suspectEntity, AdverseEvent.suspectEntity.extension, AdverseEvent.suspectEntity.modifierExtension, AdverseEvent.suspectEntity.instance[x], AdverseEvent.suspectEntity.causality, AdverseEvent.suspectEntity.causality.extension, AdverseEvent.suspectEntity.causality.modifierExtension, AdverseEvent.suspectEntity.causality.assessmentMethod, AdverseEvent.suspectEntity.causality.entityRelatedness, AdverseEvent.suspectEntity.causality.author, AdverseEvent.contributingFactor, AdverseEvent.contributingFactor.extension, AdverseEvent.contributingFactor.modifierExtension, AdverseEvent.contributingFactor.item[x], AdverseEvent.preventiveAction, AdverseEvent.preventiveAction.extension, AdverseEvent.preventiveAction.modifierExtension, AdverseEvent.preventiveAction.item[x], AdverseEvent.mitigatingAction, AdverseEvent.mitigatingAction.extension, AdverseEvent.mitigatingAction.modifierExtension, AdverseEvent.mitigatingAction.item[x], AdverseEvent.supportingInfo, AdverseEvent.supportingInfo.extension, AdverseEvent.supportingInfo.modifierExtension, AdverseEvent.supportingInfo.item[x], AdverseEvent.note | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | AdverseEvent.extension, AdverseEvent.modifierExtension, AdverseEvent.participant.extension, AdverseEvent.participant.modifierExtension, AdverseEvent.suspectEntity.extension, AdverseEvent.suspectEntity.modifierExtension, AdverseEvent.suspectEntity.causality.extension, AdverseEvent.suspectEntity.causality.modifierExtension, AdverseEvent.contributingFactor.extension, AdverseEvent.contributingFactor.modifierExtension, AdverseEvent.preventiveAction.extension, AdverseEvent.preventiveAction.modifierExtension, AdverseEvent.mitigatingAction.extension, AdverseEvent.mitigatingAction.modifierExtension, AdverseEvent.supportingInfo.extension, AdverseEvent.supportingInfo.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
Summary
Must-Support: 19 elements
Structures
This structure refers to these other structures:
Other representations of profile: CSV, Excel, Schematron
Common API interactions for this profile. Requests require a JWT access token - see Security and authentication. [base] is the FHIR server base URL; | separates a token system from its value and must be URL-encoded as %7C. These interactions use standard FHIR R5 search parameters; see the CapabilityStatement as it is finalized for this resource.
Read an adverse event by server id
GET [base]/AdverseEvent/[id]
Useful searches
# all adverse events for a patient
GET [base]/AdverseEvent?subject=Patient/[id]
# serious events only, most recent first
GET [base]/AdverseEvent?subject=Patient/[id]&seriousness=http://terminology.hl7.org/CodeSystem/adverse-event-seriousness%7Cserious&_sort=-date
# by date, status, or event code
GET [base]/AdverseEvent?subject=Patient/[id]&date=ge2026-01-01
GET [base]/AdverseEvent?status=completed
GET [base]/AdverseEvent?code=http://snomed.info/sct%7C39579001
Record a new adverse event
POST [base]/AdverseEvent
{
"resourceType": "AdverseEvent",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-adverse-event" ] },
...
}
Update an adverse event (e.g. add an outcome or the resulting condition once known)
PUT [base]/AdverseEvent/[id]
If-Match: W/"3" # the ETag from your last read; 412 if it changed since
{
"resourceType": "AdverseEvent",
"id": "[id]",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-adverse-event" ] },
...
}