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-auditevent | Version: 0.5.0 | ||||
| Active as of 2025-03-29 | Computable Name: UZCoreAuditEvent | ||||
Uzbekistan Core AuditEvent profile, used to track user and application activity
UZ Core AuditEvent is the immutable audit log of who accessed or changed what on the Digital Health Platform. It follows the IHE ATNA / DICOM audit model: the platform logs reads, creates, updates, deletes, searches, logins and break-glass events, recording the query behind a search and flagging failed or denied access (HTTP 401 / 403). AuditEvents are written by the platform and are read-only to clients; they link to the Patient whose data was involved.
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 top-level mandatory cardinality of its own. The required elements are the ones inherited from the base resource: a code (what happened), a recorded timestamp, at least one agent with a who, and a source with an observer. Within the dhpCategory category slice, when present, the system (DICOM dcm) and code are each 1..1.
who may be a PractitionerRole, Practitioner, Patient or RelatedPerson;Break-glass access is recorded here as an AuditEvent whose
agent.authorizationcarries an emergency purpose-of-use.
AuditEvents are written by the platform, not by clients, so you mostly read them - but it helps to know their shape. The examples below show a self-contained event and then an event that touches a patient's data. Every value shown validates against this profile. The full reference instances are linked at the bottom of the page (login, condition lookup).
A self-contained event names what happened (code), its grouping (category), the action (E = execute), when it occurredDateTime and was recorded, the outcome.code, the agent who did it, and the source that logged it. The agent.who is a plain Reference and may point at a PractitionerRole, Practitioner, Patient or RelatedPerson:
{
"resourceType": "AuditEvent",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-auditevent" ] },
"category": [
{
"coding": [
{
"system": "http://dicom.nema.org/resources/ontology/DCM",
"code": "110114",
"display": "User Authentication"
}
]
}
],
"code": {
"coding": [
{
"system": "http://dicom.nema.org/resources/ontology/DCM",
"code": "110122",
"display": "Login"
}
]
},
"action": "E",
"occurredDateTime": "2023-11-09T15:23:47.123Z",
"recorded": "2023-11-09T15:23:47.123Z",
"outcome": { "code": { "system": "http://hl7.org/fhir/issue-severity", "code": "success" } },
"agent": [
{
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/extra-security-role-type",
"code": "humanuser"
}
]
},
"role": [
{
"coding": [
{
"system": "http://hl7.org/fhir/sample-security-structural-roles",
"code": "regulated-health-professionals"
}
]
}
],
"authorization": [
{
"coding": [
{ "system": "http://terminology.hl7.org/CodeSystem/v3-ActReason", "code": "TREAT" }
]
}
],
"who": { "reference": "PractitionerRole/example-practitionerrole" }
}
],
"source": {
"observer": { "display": "Uzbekistan Digital Health Platform" },
"type": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/security-source-type",
"code": "4",
"display": "Application Server"
}
]
}
]
}
}
category, code, action, outcome.code, and the agent codings (type, role, authorization) each use a required binding - the value must come from the bound value set (the Snapshot view below lists each one). agent.authorization is the purpose-of-use (TREAT here); a break-glass access carries an emergency purpose-of-use instead.
When the event read or changed a specific patient's record, add the patient it concerned and an entity describing the resource that was touched. Here a practitioner searched for a Condition: the action is R (read), the code is the FHIR search interaction, and entity.what references the resource that was returned. Both patient and entity.what are plain Reference types:
{
"resourceType": "AuditEvent",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-auditevent" ] },
"category": [
{
"coding": [
{
"system": "http://dicom.nema.org/resources/ontology/DCM",
"code": "110112",
"display": "Query"
}
]
}
],
"code": {
"coding": [ { "system": "http://hl7.org/fhir/restful-interaction", "code": "search" } ]
},
"action": "R",
"occurredDateTime": "2025-02-15T14:02:52Z",
"recorded": "2025-02-15T14:02:52Z",
"outcome": { "code": { "system": "http://hl7.org/fhir/issue-severity", "code": "success" } },
"patient": { "reference": "Patient/example-patient" },
"agent": [
{
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/extra-security-role-type",
"code": "humanuser"
}
]
},
"role": [
{
"coding": [
{
"system": "http://hl7.org/fhir/sample-security-structural-roles",
"code": "regulated-health-professionals"
}
]
}
],
"authorization": [
{
"coding": [
{ "system": "http://terminology.hl7.org/CodeSystem/v3-ActReason", "code": "TREAT" }
]
}
],
"who": { "reference": "PractitionerRole/example-practitionerrole" }
}
],
"entity": [
{
"role": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/object-role",
"code": "4",
"display": "Domain Resource"
}
]
},
"securityLabel": [
{
"coding": [
{ "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "NOAUTH" }
]
}
],
"what": { "reference": "Condition/example-headache" }
}
],
"source": {
"observer": { "display": "Uzbekistan Digital Health Platform" },
"type": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/security-source-type",
"code": "4",
"display": "Application Server"
}
]
}
]
}
}
For a search, the platform also records the query itself (base64-encoded) in entity.query. A failed or denied access (HTTP 401 / 403) is logged the same way but with a failure outcome.code.
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..* | AuditEvent(5.0.0) | Record of an event | |
![]() ![]() |
?!Σ | 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..* | CodeableConcept | Type/identifier of event Binding: AuditEventID (example): Type of event. |
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Slice: Unordered, Open by value:system |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Code defined by a terminology system |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Required Pattern: http://dicom.nema.org/resources/ontology/DCM |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Binding: AuditEventTypeVS (0.5.0) (required) |
![]() ![]() |
SΣ | 1..1 | CodeableConcept | Specific type of event Binding: AuditEventSubTypeVS (0.5.0) (required) |
![]() ![]() |
SΣ | 0..1 | code | Type of action performed during the event Binding: AuditEventActionVS (0.5.0) (required) |
![]() ![]() |
0..1 | When the activity occurred Slice: Unordered, Open by type:$this | ||
![]() ![]() ![]() |
Period | |||
![]() ![]() ![]() |
dateTime | |||
![]() ![]() ![]() |
S | 0..1 | dateTime | When the activity occurred |
![]() ![]() |
SΣ | 1..1 | instant | Time when the event was recorded |
![]() ![]() |
SΣ | 0..1 | BackboneElement | Whether the event succeeded or failed |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
Σ | 1..1 | Coding | Whether the event succeeded or failed Binding: AuditEventOutcomeVS (0.5.0) (required) |
![]() ![]() |
S | 0..1 | Reference(Patient) | The patient is the subject of the data used/created/updated/deleted during the activity |
![]() ![]() |
SΣ | 1..* | BackboneElement | Actor involved in the event |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | How agent participated Binding: AuditParticipationRoleTypeVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Agent role in the event Binding: SecurityRoleTypeVS (0.5.0) (required) |
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core PractitionerRole(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core Patient(0.5.0) | RelatedPerson) | Identifier of who |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Allowable authorization for this agent Binding: AuditPurposeOfUseVS (0.5.0) (required) |
![]() ![]() |
Σ | 1..1 | BackboneElement | Audit Event Reporter |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
Σ | 1..1 | Reference(Practitioner | PractitionerRole | Organization | CareTeam | Patient | Device | RelatedPerson) | The identity of source detecting the event |
![]() ![]() |
SΣ | 0..* | BackboneElement | Data or objects used |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Reference(Resource) | Specific instance of resource |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | What role the entity played Binding: ObjectRoleVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Security labels on the entity Binding: SecurityLabelVS (0.5.0) (required) |
![]() ![]() ![]() |
SΣ | 0..1 | base64Binary | Query parameters |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| AuditEvent.category | Base | example | Audit Event ID | 📍5.0.0 | FHIR Std. |
| AuditEvent.category.coding:dhpCategory.code | Base | required | Audit event type | 📍0.5.0 | This IG |
| AuditEvent.code | Base | required | Audit event subtype | 📍0.5.0 | This IG |
| AuditEvent.action | Base | required | Audit event action | 📍0.5.0 | This IG |
| AuditEvent.outcome.code | Base | required | Audit event outcome | 📍0.5.0 | This IG |
| AuditEvent.agent.type | Base | required | Audit event role type | 📍0.5.0 | This IG |
| AuditEvent.agent.role | Base | required | Security role type | 📍0.5.0 | This IG |
| AuditEvent.agent.authorization | Base | required | Purpose of use | 📍0.5.0 | This IG |
| AuditEvent.entity.role | Base | required | Object role | 📍0.5.0 | This IG |
| AuditEvent.entity.securityLabel | Base | required | Security label | 📍0.5.0 | This IG |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | AuditEvent | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | AuditEvent | 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 | AuditEvent | 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 | AuditEvent | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | AuditEvent | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | AuditEvent.implicitRules, AuditEvent.modifierExtension, AuditEvent.category, AuditEvent.category.coding, AuditEvent.category.coding:dhpCategory, AuditEvent.category.coding:dhpCategory.system, AuditEvent.category.coding:dhpCategory.code, AuditEvent.code, AuditEvent.action, AuditEvent.occurred[x], AuditEvent.occurred[x]:occurredDateTime, AuditEvent.recorded, AuditEvent.outcome, AuditEvent.outcome.modifierExtension, AuditEvent.outcome.code, AuditEvent.patient, AuditEvent.agent, AuditEvent.agent.modifierExtension, AuditEvent.agent.type, AuditEvent.agent.role, AuditEvent.agent.who, AuditEvent.agent.authorization, AuditEvent.source, AuditEvent.source.modifierExtension, AuditEvent.source.observer, AuditEvent.entity, AuditEvent.entity.modifierExtension, AuditEvent.entity.what, AuditEvent.entity.role, AuditEvent.entity.securityLabel, AuditEvent.entity.query | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | AuditEvent.modifierExtension, AuditEvent.outcome.modifierExtension, AuditEvent.agent.modifierExtension, AuditEvent.source.modifierExtension, AuditEvent.entity.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | AuditEvent(5.0.0) | Record of an event | |
![]() ![]() |
S | 0..* | CodeableConcept | Type/identifier of event |
![]() ![]() ![]() |
0..* | Coding | Code defined by a terminology system Slice: Unordered, Open by value:system | |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Code defined by a terminology system |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Required Pattern: http://dicom.nema.org/resources/ontology/DCM |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Binding: AuditEventTypeVS (0.5.0) (required) |
![]() ![]() |
S | 1..1 | CodeableConcept | Specific type of event Binding: AuditEventSubTypeVS (0.5.0) (required) |
![]() ![]() |
S | 0..1 | code | Type of action performed during the event Binding: AuditEventActionVS (0.5.0) (required) |
![]() ![]() |
0..1 | Period, dateTime | When the activity occurred Slice: Unordered, Open by type:$this | |
![]() ![]() ![]() |
S | 0..1 | dateTime | When the activity occurred |
![]() ![]() |
S | 1..1 | instant | Time when the event was recorded |
![]() ![]() |
S | 0..1 | BackboneElement | Whether the event succeeded or failed |
![]() ![]() ![]() |
1..1 | Coding | Whether the event succeeded or failed Binding: AuditEventOutcomeVS (0.5.0) (required) | |
![]() ![]() |
S | 0..1 | Reference(Patient) | The patient is the subject of the data used/created/updated/deleted during the activity |
![]() ![]() |
S | 1..* | BackboneElement | Actor involved in the event |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | How agent participated Binding: AuditParticipationRoleTypeVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Agent role in the event Binding: SecurityRoleTypeVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 1..1 | Reference(UZ Core PractitionerRole(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core Patient(0.5.0) | RelatedPerson) | Identifier of who |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Allowable authorization for this agent Binding: AuditPurposeOfUseVS (0.5.0) (required) |
![]() ![]() |
S | 0..* | BackboneElement | Data or objects used |
![]() ![]() ![]() |
S | 0..1 | Reference(Resource) | Specific instance of resource |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | What role the entity played Binding: ObjectRoleVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Security labels on the entity Binding: SecurityLabelVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | base64Binary | Query parameters |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| AuditEvent.category.coding:dhpCategory.code | Base | required | Audit event type | 📍0.5.0 | This IG |
| AuditEvent.code | Base | required | Audit event subtype | 📍0.5.0 | This IG |
| AuditEvent.action | Base | required | Audit event action | 📍0.5.0 | This IG |
| AuditEvent.outcome.code | Base | required | Audit event outcome | 📍0.5.0 | This IG |
| AuditEvent.agent.type | Base | required | Audit event role type | 📍0.5.0 | This IG |
| AuditEvent.agent.role | Base | required | Security role type | 📍0.5.0 | This IG |
| AuditEvent.agent.authorization | Base | required | Purpose of use | 📍0.5.0 | This IG |
| AuditEvent.entity.role | Base | required | Object role | 📍0.5.0 | This IG |
| AuditEvent.entity.securityLabel | Base | required | Security label | 📍0.5.0 | This IG |
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
0..* | AuditEvent(5.0.0) | Record of an event | |||||
![]() ![]() |
Σ | 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..* | CodeableConcept | Type/identifier of event Binding: AuditEventID (example): Type of event. | ||||
![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Slice: Unordered, Open by value:system | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Code defined by a terminology system | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Required Pattern: http://dicom.nema.org/resources/ontology/DCM | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Binding: AuditEventTypeVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() |
Σ | 0..1 | string | Plain text representation of the concept | ||||
![]() ![]() |
SΣ | 1..1 | CodeableConcept | Specific type of event Binding: AuditEventSubTypeVS (0.5.0) (required) | ||||
![]() ![]() |
SΣ | 0..1 | code | Type of action performed during the event Binding: AuditEventActionVS (0.5.0) (required) | ||||
![]() ![]() |
Σ | 0..1 | code | emergency | alert | critical | error | warning | notice | informational | debug Binding: AuditEventSeverity (required): This is in the SysLog header, PRI. http://tools.ietf.org/html/rfc5424#appendix-A.3 | ||||
![]() ![]() |
0..1 | When the activity occurred Slice: Unordered, Open by type:$this | ||||||
![]() ![]() ![]() |
Period | |||||||
![]() ![]() ![]() |
dateTime | |||||||
![]() ![]() ![]() |
S | 0..1 | dateTime | When the activity occurred | ||||
![]() ![]() |
SΣ | 1..1 | instant | Time when the event was recorded | ||||
![]() ![]() |
SΣ | 0..1 | BackboneElement | Whether the event succeeded or failed | ||||
![]() ![]() ![]() |
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 | Coding | Whether the event succeeded or failed Binding: AuditEventOutcomeVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
Σ | 0..* | CodeableConcept | Additional outcome detail Binding: AuditEventOutcomeDetail (example): A code that provides details as the exact issue. | ||||
![]() ![]() |
Σ | 0..* | CodeableConcept | Authorization related to the event Binding: PurposeOfUse (3.1.0) (example): The authorized purposeOfUse for the activity. | ||||
![]() ![]() |
0..* | Reference(CarePlan | DeviceRequest | ImmunizationRecommendation | MedicationRequest | NutritionOrder | ServiceRequest | Task) | Workflow authorization within which this event occurred | |||||
![]() ![]() |
S | 0..1 | Reference(Patient) | The patient is the subject of the data used/created/updated/deleted during the activity | ||||
![]() ![]() |
0..1 | Reference(Encounter) | Encounter within which this event occurred or which the event is tightly associated | |||||
![]() ![]() |
SΣ | 1..* | BackboneElement | Actor involved in 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 | ||||
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | How agent participated Binding: AuditParticipationRoleTypeVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Agent role in the event Binding: SecurityRoleTypeVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core PractitionerRole(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core Patient(0.5.0) | RelatedPerson) | Identifier of who | ||||
![]() ![]() ![]() |
Σ | 0..1 | boolean | Whether user is initiator | ||||
![]() ![]() ![]() |
0..1 | Reference(Location) | The agent location when the event occurred | |||||
![]() ![]() ![]() |
0..* | uri | Policy that authorized the agent participation in the event | |||||
![]() ![]() ![]() |
0..1 | This agent network location for the activity | ||||||
![]() ![]() ![]() ![]() |
Reference(Endpoint) | |||||||
![]() ![]() ![]() ![]() |
uri | |||||||
![]() ![]() ![]() ![]() |
string | |||||||
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Allowable authorization for this agent Binding: AuditPurposeOfUseVS (0.5.0) (required) | ||||
![]() ![]() |
Σ | 1..1 | BackboneElement | Audit Event Reporter | ||||
![]() ![]() ![]() |
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 | Reference(Location) | Logical source location within the enterprise | |||||
![]() ![]() ![]() |
Σ | 1..1 | Reference(Practitioner | PractitionerRole | Organization | CareTeam | Patient | Device | RelatedPerson) | The identity of source detecting the event | ||||
![]() ![]() ![]() |
0..* | CodeableConcept | The type of source where event originated Binding: AuditEventSourceType (preferred): Code specifying the type of system that detected and recorded the event. Use of these codes is not required but is encouraged to maintain translation with DICOM AuditMessage schema. | |||||
![]() ![]() |
SΣ | 0..* | BackboneElement | Data or objects used | ||||
![]() ![]() ![]() |
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 | Reference(Resource) | Specific instance of resource | ||||
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | What role the entity played Binding: ObjectRoleVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Security labels on the entity Binding: SecurityLabelVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | base64Binary | Query parameters | ||||
![]() ![]() ![]() |
0..* | BackboneElement | Additional Information about the entity | |||||
![]() ![]() ![]() ![]() |
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 | CodeableConcept | Name of the property Binding: AuditEventID (example): Additional detail about an entity used in an event. | |||||
![]() ![]() ![]() ![]() |
1..1 | Property value | ||||||
![]() ![]() ![]() ![]() ![]() |
Quantity | |||||||
![]() ![]() ![]() ![]() ![]() |
CodeableConcept | |||||||
![]() ![]() ![]() ![]() ![]() |
string | |||||||
![]() ![]() ![]() ![]() ![]() |
boolean | |||||||
![]() ![]() ![]() ![]() ![]() |
integer | |||||||
![]() ![]() ![]() ![]() ![]() |
Range | |||||||
![]() ![]() ![]() ![]() ![]() |
Ratio | |||||||
![]() ![]() ![]() ![]() ![]() |
time | |||||||
![]() ![]() ![]() ![]() ![]() |
dateTime | |||||||
![]() ![]() ![]() ![]() ![]() |
Period | |||||||
![]() ![]() ![]() ![]() ![]() |
base64Binary | |||||||
![]() ![]() ![]() |
0..* | See agent (AuditEvent) | Entity is attributed to this agent | |||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| AuditEvent.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| AuditEvent.category | Base | example | Audit Event ID | 📍5.0.0 | FHIR Std. |
| AuditEvent.category.coding:dhpCategory.code | Base | required | Audit event type | 📍0.5.0 | This IG |
| AuditEvent.code | Base | required | Audit event subtype | 📍0.5.0 | This IG |
| AuditEvent.action | Base | required | Audit event action | 📍0.5.0 | This IG |
| AuditEvent.severity | Base | required | Audit Event Severity | 📍5.0.0 | FHIR Std. |
| AuditEvent.outcome.code | Base | required | Audit event outcome | 📍0.5.0 | This IG |
| AuditEvent.outcome.detail | Base | example | Audit Event Outcome Detail | 📍5.0.0 | FHIR Std. |
| AuditEvent.authorization | Base | example | PurposeOfUse | 📍3.1.0 | THO v7.1 |
| AuditEvent.agent.type | Base | required | Audit event role type | 📍0.5.0 | This IG |
| AuditEvent.agent.role | Base | required | Security role type | 📍0.5.0 | This IG |
| AuditEvent.agent.authorization | Base | required | Purpose of use | 📍0.5.0 | This IG |
| AuditEvent.source.type | Base | preferred | Audit Event Source Type | 📍5.0.0 | FHIR Std. |
| AuditEvent.entity.role | Base | required | Object role | 📍0.5.0 | This IG |
| AuditEvent.entity.securityLabel | Base | required | Security label | 📍0.5.0 | This IG |
| AuditEvent.entity.detail.type | Base | example | Audit Event ID | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | AuditEvent | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | AuditEvent | 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 | AuditEvent | 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 | AuditEvent | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | AuditEvent | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | AuditEvent.meta, AuditEvent.implicitRules, AuditEvent.language, AuditEvent.text, AuditEvent.extension, AuditEvent.modifierExtension, AuditEvent.category, AuditEvent.category.extension, AuditEvent.category.coding, AuditEvent.category.coding:dhpCategory, AuditEvent.category.coding:dhpCategory.extension, AuditEvent.category.coding:dhpCategory.system, AuditEvent.category.coding:dhpCategory.version, AuditEvent.category.coding:dhpCategory.code, AuditEvent.category.coding:dhpCategory.display, AuditEvent.category.coding:dhpCategory.userSelected, AuditEvent.category.text, AuditEvent.code, AuditEvent.action, AuditEvent.severity, AuditEvent.occurred[x], AuditEvent.occurred[x]:occurredDateTime, AuditEvent.recorded, AuditEvent.outcome, AuditEvent.outcome.extension, AuditEvent.outcome.modifierExtension, AuditEvent.outcome.code, AuditEvent.outcome.detail, AuditEvent.authorization, AuditEvent.basedOn, AuditEvent.patient, AuditEvent.encounter, AuditEvent.agent, AuditEvent.agent.extension, AuditEvent.agent.modifierExtension, AuditEvent.agent.type, AuditEvent.agent.role, AuditEvent.agent.who, AuditEvent.agent.requestor, AuditEvent.agent.location, AuditEvent.agent.policy, AuditEvent.agent.network[x], AuditEvent.agent.authorization, AuditEvent.source, AuditEvent.source.extension, AuditEvent.source.modifierExtension, AuditEvent.source.site, AuditEvent.source.observer, AuditEvent.source.type, AuditEvent.entity, AuditEvent.entity.extension, AuditEvent.entity.modifierExtension, AuditEvent.entity.what, AuditEvent.entity.role, AuditEvent.entity.securityLabel, AuditEvent.entity.query, AuditEvent.entity.detail, AuditEvent.entity.detail.extension, AuditEvent.entity.detail.modifierExtension, AuditEvent.entity.detail.type, AuditEvent.entity.detail.value[x], AuditEvent.entity.agent | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | AuditEvent.extension, AuditEvent.modifierExtension, AuditEvent.category.extension, AuditEvent.category.coding:dhpCategory.extension, AuditEvent.outcome.extension, AuditEvent.outcome.modifierExtension, AuditEvent.agent.extension, AuditEvent.agent.modifierExtension, AuditEvent.source.extension, AuditEvent.source.modifierExtension, AuditEvent.entity.extension, AuditEvent.entity.modifierExtension, AuditEvent.entity.detail.extension, AuditEvent.entity.detail.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
Summary
Mandatory: 0 element(2 nested mandatory elements)
Must-Support: 20 elements
Structures
This structure refers to these other structures:
Slices
This structure defines the following Slices:
Key Elements View
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | AuditEvent(5.0.0) | Record of an event | |
![]() ![]() |
?!Σ | 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..* | CodeableConcept | Type/identifier of event Binding: AuditEventID (example): Type of event. |
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Slice: Unordered, Open by value:system |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Code defined by a terminology system |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Required Pattern: http://dicom.nema.org/resources/ontology/DCM |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Binding: AuditEventTypeVS (0.5.0) (required) |
![]() ![]() |
SΣ | 1..1 | CodeableConcept | Specific type of event Binding: AuditEventSubTypeVS (0.5.0) (required) |
![]() ![]() |
SΣ | 0..1 | code | Type of action performed during the event Binding: AuditEventActionVS (0.5.0) (required) |
![]() ![]() |
0..1 | When the activity occurred Slice: Unordered, Open by type:$this | ||
![]() ![]() ![]() |
Period | |||
![]() ![]() ![]() |
dateTime | |||
![]() ![]() ![]() |
S | 0..1 | dateTime | When the activity occurred |
![]() ![]() |
SΣ | 1..1 | instant | Time when the event was recorded |
![]() ![]() |
SΣ | 0..1 | BackboneElement | Whether the event succeeded or failed |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
Σ | 1..1 | Coding | Whether the event succeeded or failed Binding: AuditEventOutcomeVS (0.5.0) (required) |
![]() ![]() |
S | 0..1 | Reference(Patient) | The patient is the subject of the data used/created/updated/deleted during the activity |
![]() ![]() |
SΣ | 1..* | BackboneElement | Actor involved in the event |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | How agent participated Binding: AuditParticipationRoleTypeVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Agent role in the event Binding: SecurityRoleTypeVS (0.5.0) (required) |
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core PractitionerRole(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core Patient(0.5.0) | RelatedPerson) | Identifier of who |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Allowable authorization for this agent Binding: AuditPurposeOfUseVS (0.5.0) (required) |
![]() ![]() |
Σ | 1..1 | BackboneElement | Audit Event Reporter |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
Σ | 1..1 | Reference(Practitioner | PractitionerRole | Organization | CareTeam | Patient | Device | RelatedPerson) | The identity of source detecting the event |
![]() ![]() |
SΣ | 0..* | BackboneElement | Data or objects used |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Reference(Resource) | Specific instance of resource |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | What role the entity played Binding: ObjectRoleVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Security labels on the entity Binding: SecurityLabelVS (0.5.0) (required) |
![]() ![]() ![]() |
SΣ | 0..1 | base64Binary | Query parameters |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| AuditEvent.category | Base | example | Audit Event ID | 📍5.0.0 | FHIR Std. |
| AuditEvent.category.coding:dhpCategory.code | Base | required | Audit event type | 📍0.5.0 | This IG |
| AuditEvent.code | Base | required | Audit event subtype | 📍0.5.0 | This IG |
| AuditEvent.action | Base | required | Audit event action | 📍0.5.0 | This IG |
| AuditEvent.outcome.code | Base | required | Audit event outcome | 📍0.5.0 | This IG |
| AuditEvent.agent.type | Base | required | Audit event role type | 📍0.5.0 | This IG |
| AuditEvent.agent.role | Base | required | Security role type | 📍0.5.0 | This IG |
| AuditEvent.agent.authorization | Base | required | Purpose of use | 📍0.5.0 | This IG |
| AuditEvent.entity.role | Base | required | Object role | 📍0.5.0 | This IG |
| AuditEvent.entity.securityLabel | Base | required | Security label | 📍0.5.0 | This IG |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | AuditEvent | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | AuditEvent | 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 | AuditEvent | 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 | AuditEvent | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | AuditEvent | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | AuditEvent.implicitRules, AuditEvent.modifierExtension, AuditEvent.category, AuditEvent.category.coding, AuditEvent.category.coding:dhpCategory, AuditEvent.category.coding:dhpCategory.system, AuditEvent.category.coding:dhpCategory.code, AuditEvent.code, AuditEvent.action, AuditEvent.occurred[x], AuditEvent.occurred[x]:occurredDateTime, AuditEvent.recorded, AuditEvent.outcome, AuditEvent.outcome.modifierExtension, AuditEvent.outcome.code, AuditEvent.patient, AuditEvent.agent, AuditEvent.agent.modifierExtension, AuditEvent.agent.type, AuditEvent.agent.role, AuditEvent.agent.who, AuditEvent.agent.authorization, AuditEvent.source, AuditEvent.source.modifierExtension, AuditEvent.source.observer, AuditEvent.entity, AuditEvent.entity.modifierExtension, AuditEvent.entity.what, AuditEvent.entity.role, AuditEvent.entity.securityLabel, AuditEvent.entity.query | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | AuditEvent.modifierExtension, AuditEvent.outcome.modifierExtension, AuditEvent.agent.modifierExtension, AuditEvent.source.modifierExtension, AuditEvent.entity.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
Differential View
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | AuditEvent(5.0.0) | Record of an event | |
![]() ![]() |
S | 0..* | CodeableConcept | Type/identifier of event |
![]() ![]() ![]() |
0..* | Coding | Code defined by a terminology system Slice: Unordered, Open by value:system | |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Code defined by a terminology system |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Required Pattern: http://dicom.nema.org/resources/ontology/DCM |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Binding: AuditEventTypeVS (0.5.0) (required) |
![]() ![]() |
S | 1..1 | CodeableConcept | Specific type of event Binding: AuditEventSubTypeVS (0.5.0) (required) |
![]() ![]() |
S | 0..1 | code | Type of action performed during the event Binding: AuditEventActionVS (0.5.0) (required) |
![]() ![]() |
0..1 | Period, dateTime | When the activity occurred Slice: Unordered, Open by type:$this | |
![]() ![]() ![]() |
S | 0..1 | dateTime | When the activity occurred |
![]() ![]() |
S | 1..1 | instant | Time when the event was recorded |
![]() ![]() |
S | 0..1 | BackboneElement | Whether the event succeeded or failed |
![]() ![]() ![]() |
1..1 | Coding | Whether the event succeeded or failed Binding: AuditEventOutcomeVS (0.5.0) (required) | |
![]() ![]() |
S | 0..1 | Reference(Patient) | The patient is the subject of the data used/created/updated/deleted during the activity |
![]() ![]() |
S | 1..* | BackboneElement | Actor involved in the event |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | How agent participated Binding: AuditParticipationRoleTypeVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Agent role in the event Binding: SecurityRoleTypeVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 1..1 | Reference(UZ Core PractitionerRole(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core Patient(0.5.0) | RelatedPerson) | Identifier of who |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Allowable authorization for this agent Binding: AuditPurposeOfUseVS (0.5.0) (required) |
![]() ![]() |
S | 0..* | BackboneElement | Data or objects used |
![]() ![]() ![]() |
S | 0..1 | Reference(Resource) | Specific instance of resource |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | What role the entity played Binding: ObjectRoleVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Security labels on the entity Binding: SecurityLabelVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | base64Binary | Query parameters |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| AuditEvent.category.coding:dhpCategory.code | Base | required | Audit event type | 📍0.5.0 | This IG |
| AuditEvent.code | Base | required | Audit event subtype | 📍0.5.0 | This IG |
| AuditEvent.action | Base | required | Audit event action | 📍0.5.0 | This IG |
| AuditEvent.outcome.code | Base | required | Audit event outcome | 📍0.5.0 | This IG |
| AuditEvent.agent.type | Base | required | Audit event role type | 📍0.5.0 | This IG |
| AuditEvent.agent.role | Base | required | Security role type | 📍0.5.0 | This IG |
| AuditEvent.agent.authorization | Base | required | Purpose of use | 📍0.5.0 | This IG |
| AuditEvent.entity.role | Base | required | Object role | 📍0.5.0 | This IG |
| AuditEvent.entity.securityLabel | Base | required | Security label | 📍0.5.0 | This IG |
Snapshot ViewView
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
0..* | AuditEvent(5.0.0) | Record of an event | |||||
![]() ![]() |
Σ | 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..* | CodeableConcept | Type/identifier of event Binding: AuditEventID (example): Type of event. | ||||
![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Slice: Unordered, Open by value:system | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Code defined by a terminology system | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Required Pattern: http://dicom.nema.org/resources/ontology/DCM | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Binding: AuditEventTypeVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() |
Σ | 0..1 | string | Plain text representation of the concept | ||||
![]() ![]() |
SΣ | 1..1 | CodeableConcept | Specific type of event Binding: AuditEventSubTypeVS (0.5.0) (required) | ||||
![]() ![]() |
SΣ | 0..1 | code | Type of action performed during the event Binding: AuditEventActionVS (0.5.0) (required) | ||||
![]() ![]() |
Σ | 0..1 | code | emergency | alert | critical | error | warning | notice | informational | debug Binding: AuditEventSeverity (required): This is in the SysLog header, PRI. http://tools.ietf.org/html/rfc5424#appendix-A.3 | ||||
![]() ![]() |
0..1 | When the activity occurred Slice: Unordered, Open by type:$this | ||||||
![]() ![]() ![]() |
Period | |||||||
![]() ![]() ![]() |
dateTime | |||||||
![]() ![]() ![]() |
S | 0..1 | dateTime | When the activity occurred | ||||
![]() ![]() |
SΣ | 1..1 | instant | Time when the event was recorded | ||||
![]() ![]() |
SΣ | 0..1 | BackboneElement | Whether the event succeeded or failed | ||||
![]() ![]() ![]() |
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 | Coding | Whether the event succeeded or failed Binding: AuditEventOutcomeVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
Σ | 0..* | CodeableConcept | Additional outcome detail Binding: AuditEventOutcomeDetail (example): A code that provides details as the exact issue. | ||||
![]() ![]() |
Σ | 0..* | CodeableConcept | Authorization related to the event Binding: PurposeOfUse (3.1.0) (example): The authorized purposeOfUse for the activity. | ||||
![]() ![]() |
0..* | Reference(CarePlan | DeviceRequest | ImmunizationRecommendation | MedicationRequest | NutritionOrder | ServiceRequest | Task) | Workflow authorization within which this event occurred | |||||
![]() ![]() |
S | 0..1 | Reference(Patient) | The patient is the subject of the data used/created/updated/deleted during the activity | ||||
![]() ![]() |
0..1 | Reference(Encounter) | Encounter within which this event occurred or which the event is tightly associated | |||||
![]() ![]() |
SΣ | 1..* | BackboneElement | Actor involved in 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 | ||||
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | How agent participated Binding: AuditParticipationRoleTypeVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Agent role in the event Binding: SecurityRoleTypeVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
SΣ | 1..1 | Reference(UZ Core PractitionerRole(0.5.0) | UZ Core Practitioner(0.5.0) | UZ Core Patient(0.5.0) | RelatedPerson) | Identifier of who | ||||
![]() ![]() ![]() |
Σ | 0..1 | boolean | Whether user is initiator | ||||
![]() ![]() ![]() |
0..1 | Reference(Location) | The agent location when the event occurred | |||||
![]() ![]() ![]() |
0..* | uri | Policy that authorized the agent participation in the event | |||||
![]() ![]() ![]() |
0..1 | This agent network location for the activity | ||||||
![]() ![]() ![]() ![]() |
Reference(Endpoint) | |||||||
![]() ![]() ![]() ![]() |
uri | |||||||
![]() ![]() ![]() ![]() |
string | |||||||
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Allowable authorization for this agent Binding: AuditPurposeOfUseVS (0.5.0) (required) | ||||
![]() ![]() |
Σ | 1..1 | BackboneElement | Audit Event Reporter | ||||
![]() ![]() ![]() |
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 | Reference(Location) | Logical source location within the enterprise | |||||
![]() ![]() ![]() |
Σ | 1..1 | Reference(Practitioner | PractitionerRole | Organization | CareTeam | Patient | Device | RelatedPerson) | The identity of source detecting the event | ||||
![]() ![]() ![]() |
0..* | CodeableConcept | The type of source where event originated Binding: AuditEventSourceType (preferred): Code specifying the type of system that detected and recorded the event. Use of these codes is not required but is encouraged to maintain translation with DICOM AuditMessage schema. | |||||
![]() ![]() |
SΣ | 0..* | BackboneElement | Data or objects used | ||||
![]() ![]() ![]() |
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 | Reference(Resource) | Specific instance of resource | ||||
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | What role the entity played Binding: ObjectRoleVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
S | 0..* | CodeableConcept | Security labels on the entity Binding: SecurityLabelVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | base64Binary | Query parameters | ||||
![]() ![]() ![]() |
0..* | BackboneElement | Additional Information about the entity | |||||
![]() ![]() ![]() ![]() |
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 | CodeableConcept | Name of the property Binding: AuditEventID (example): Additional detail about an entity used in an event. | |||||
![]() ![]() ![]() ![]() |
1..1 | Property value | ||||||
![]() ![]() ![]() ![]() ![]() |
Quantity | |||||||
![]() ![]() ![]() ![]() ![]() |
CodeableConcept | |||||||
![]() ![]() ![]() ![]() ![]() |
string | |||||||
![]() ![]() ![]() ![]() ![]() |
boolean | |||||||
![]() ![]() ![]() ![]() ![]() |
integer | |||||||
![]() ![]() ![]() ![]() ![]() |
Range | |||||||
![]() ![]() ![]() ![]() ![]() |
Ratio | |||||||
![]() ![]() ![]() ![]() ![]() |
time | |||||||
![]() ![]() ![]() ![]() ![]() |
dateTime | |||||||
![]() ![]() ![]() ![]() ![]() |
Period | |||||||
![]() ![]() ![]() ![]() ![]() |
base64Binary | |||||||
![]() ![]() ![]() |
0..* | See agent (AuditEvent) | Entity is attributed to this agent | |||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| AuditEvent.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| AuditEvent.category | Base | example | Audit Event ID | 📍5.0.0 | FHIR Std. |
| AuditEvent.category.coding:dhpCategory.code | Base | required | Audit event type | 📍0.5.0 | This IG |
| AuditEvent.code | Base | required | Audit event subtype | 📍0.5.0 | This IG |
| AuditEvent.action | Base | required | Audit event action | 📍0.5.0 | This IG |
| AuditEvent.severity | Base | required | Audit Event Severity | 📍5.0.0 | FHIR Std. |
| AuditEvent.outcome.code | Base | required | Audit event outcome | 📍0.5.0 | This IG |
| AuditEvent.outcome.detail | Base | example | Audit Event Outcome Detail | 📍5.0.0 | FHIR Std. |
| AuditEvent.authorization | Base | example | PurposeOfUse | 📍3.1.0 | THO v7.1 |
| AuditEvent.agent.type | Base | required | Audit event role type | 📍0.5.0 | This IG |
| AuditEvent.agent.role | Base | required | Security role type | 📍0.5.0 | This IG |
| AuditEvent.agent.authorization | Base | required | Purpose of use | 📍0.5.0 | This IG |
| AuditEvent.source.type | Base | preferred | Audit Event Source Type | 📍5.0.0 | FHIR Std. |
| AuditEvent.entity.role | Base | required | Object role | 📍0.5.0 | This IG |
| AuditEvent.entity.securityLabel | Base | required | Security label | 📍0.5.0 | This IG |
| AuditEvent.entity.detail.type | Base | example | Audit Event ID | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | AuditEvent | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | AuditEvent | 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 | AuditEvent | 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 | AuditEvent | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | AuditEvent | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | AuditEvent.meta, AuditEvent.implicitRules, AuditEvent.language, AuditEvent.text, AuditEvent.extension, AuditEvent.modifierExtension, AuditEvent.category, AuditEvent.category.extension, AuditEvent.category.coding, AuditEvent.category.coding:dhpCategory, AuditEvent.category.coding:dhpCategory.extension, AuditEvent.category.coding:dhpCategory.system, AuditEvent.category.coding:dhpCategory.version, AuditEvent.category.coding:dhpCategory.code, AuditEvent.category.coding:dhpCategory.display, AuditEvent.category.coding:dhpCategory.userSelected, AuditEvent.category.text, AuditEvent.code, AuditEvent.action, AuditEvent.severity, AuditEvent.occurred[x], AuditEvent.occurred[x]:occurredDateTime, AuditEvent.recorded, AuditEvent.outcome, AuditEvent.outcome.extension, AuditEvent.outcome.modifierExtension, AuditEvent.outcome.code, AuditEvent.outcome.detail, AuditEvent.authorization, AuditEvent.basedOn, AuditEvent.patient, AuditEvent.encounter, AuditEvent.agent, AuditEvent.agent.extension, AuditEvent.agent.modifierExtension, AuditEvent.agent.type, AuditEvent.agent.role, AuditEvent.agent.who, AuditEvent.agent.requestor, AuditEvent.agent.location, AuditEvent.agent.policy, AuditEvent.agent.network[x], AuditEvent.agent.authorization, AuditEvent.source, AuditEvent.source.extension, AuditEvent.source.modifierExtension, AuditEvent.source.site, AuditEvent.source.observer, AuditEvent.source.type, AuditEvent.entity, AuditEvent.entity.extension, AuditEvent.entity.modifierExtension, AuditEvent.entity.what, AuditEvent.entity.role, AuditEvent.entity.securityLabel, AuditEvent.entity.query, AuditEvent.entity.detail, AuditEvent.entity.detail.extension, AuditEvent.entity.detail.modifierExtension, AuditEvent.entity.detail.type, AuditEvent.entity.detail.value[x], AuditEvent.entity.agent | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | AuditEvent.extension, AuditEvent.modifierExtension, AuditEvent.category.extension, AuditEvent.category.coding:dhpCategory.extension, AuditEvent.outcome.extension, AuditEvent.outcome.modifierExtension, AuditEvent.agent.extension, AuditEvent.agent.modifierExtension, AuditEvent.source.extension, AuditEvent.source.modifierExtension, AuditEvent.entity.extension, AuditEvent.entity.modifierExtension, AuditEvent.entity.detail.extension, AuditEvent.entity.detail.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
Summary
Mandatory: 0 element(2 nested mandatory elements)
Must-Support: 20 elements
Structures
This structure refers to these other structures:
Slices
This structure defines the following Slices:
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 code system from its value and must be URL-encoded as %7C.
AuditEvents are written by the platform and are read-only to clients - there is no create or update path. Query the audit log with read and search.
Read by server id
GET [base]/AuditEvent/[id]
Search the audit log
GET [base]/AuditEvent?patient=Patient/[id]
GET [base]/AuditEvent?patient=Patient/[id]&date=ge2025-01-01
GET [base]/AuditEvent?agent=PractitionerRole/[id]
GET [base]/AuditEvent?patient=Patient/[id]&action=R
GET [base]/AuditEvent?patient=Patient/[id]&category=http://dicom.nema.org/resources/ontology/DCM%7C110112
GET [base]/AuditEvent?patient=Patient/[id]&entity=Condition/[id]
GET [base]/AuditEvent?patient=Patient/[id]&outcome=http://hl7.org/fhir/issue-severity%7Cerror
In FHIR R5 the event grouping is searched with category and the specific sub-type with code (R4's type / subtype). In this profile outcome.code is bound to the issue-severity value set, so a denied or failed access is searchable as error (or fatal) rather than success.
See the CapabilityStatement for the full list of supported search parameters.