Key | Name | Data Type | Max Length (Bytes) | Nullability | Description |
---|
  | UserID | numeric(16,0) | 9 | NOT NULL | User accessing the patient. Link to IDX_User.ID |
| HostName | varchar(255) | 255 | NOT NULL | The webserver the user is connected to |
  | PatientID | numeric(16,0) | 9 | NOT NULL | Patient. Link to Person.ID. |
 | OpenDTTM | datetime | 8 | NOT NULL | Date the patients chart was opened |
 | CloseDTTM | datetime | 8 | NOT NULL | Date the patients chart was closed |
| ExposureTime | int | 4 | NOT NULL | How long did the user have the patients chart open. |
 | BreakGlassStartDTTM | datetime | 8 | NULL allowed | If the user broke glass to open the chart the time it was opened. |
 | BreakGlassExposure | int | 4 | NULL allowed | If the user broke glass to open the chart how long did the user have the patients chart open. |
| BreakGlassReason | varchar(255) | 255 | NULL allowed | The reason Break Glass was used. Some of this text gets hard coded as "Security Over-ride" but it will also tack on anything the user decides to type into the override box. |
| DeviceUsed | char(1) | 1 | NOT NULL | Type of device Used "W" for web. |
(2) | BreakType | char(2) | 2 | NULL allowed | "N" means this was not a break glass event, "PO" I believe means "Patient Opened" |