FHIRcast logo

FHIRcast
3.0.0-ballot - STU 3 Ballot International flag

FHIRcast, published by HL7 International / Infrastructure And Messaging. This guide is not an authorized publication; it is the continuous build for version 3.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhircast-docs/ and changes regularly. See the Directory of published versions

UserHibernate Event

Event-name: UserHibernate

eventMaturity 1 - Submitted

Workflow

User temporarily suspended their session due to a session time-out or other reason. The user’s session will eventually resume.

Unlike most of FHIRcast events, UserHibernate is a statically named event and therefore does not follow the FHIR-resource-[open|close] syntax.

Context

The context SHOULD contain a Parameters resource according to the following profile Hibernate Context.

Examples

{
  "timestamp": "2019-11-25T13:16:00.00",
  "id": "35d0b1d4-de45-4b5b-a0e9-9c51b21ee71a",
  "event": {
    "hub.topic": "fdb2f928-5546-4f52-87a0-0648e9ded065",
    "hub.event": "userHibernate",
    "context": [{
      "key": "parameters",
      "resource" : {
        "resourceType": "Parameters",
        "parameter":[{
          "name": "code",
          "valueCoding": {
            "system": "http://hl7.org/fhir/uv/fhircast/CodeSystem/fhircast-hibernate-codesystem",
            "code" : "user-initiated",
            "display" : "The user initiated the hibernation."
          }
        }]
      }
    }]
  }
}

Change Log

Version Description
1.0 Initial Release