https://github.com/amccool/carenavigatorsparrow
Managing the state of patient care using eventsourcing of data feeds
https://github.com/amccool/carenavigatorsparrow
Last synced: 26 days ago
JSON representation
Managing the state of patient care using eventsourcing of data feeds
- Host: GitHub
- URL: https://github.com/amccool/carenavigatorsparrow
- Owner: amccool
- License: apache-2.0
- Created: 2025-01-13T17:02:43.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-17T23:04:19.000Z (3 months ago)
- Last Synced: 2025-03-30T11:33:26.851Z (about 2 months ago)
- Language: C#
- Size: 237 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# CareNavigatorSparrow
Managing the state of patient care using eventsourcing of data feeds
Application shall track the state of patients, nurses, and doctors within a small or large practive using event sources. No User input is necessary as the data comes from the event sources.# Event sources
* ADT using faker/bogus
* RTLS random over a fixed set of locations, using a fixed set of tags
* timeclock system# Entities
1. Patient
2. Caregiver
1. Nurse
2. Doctor
3. Room
1. Bed
4. RTLS tag# Events
event ncessary for he system to operate
+ Patient
+ patient assigned tag (RTLS)
+ patient unassigned tag (RTLS)
+ Patient registered to bed (ADT)
+ Patient entered room (RTLS)
+ Patient exited room (RTLS)
+ Patient unregistered from bed
+ Nurse
+ nurse onduty (timeclock)
+ nurse offduty (timeclock)
+ nurse entered room (RTLS)
+ nurse exited room (RTLS)
+ nurse assigned tag (RTLS)
+ nurse unassigned tag (RTLS)# Care Events
events that have value to the business
+ nurse saw patient for the first time
+ nurse rounded on patient to check on them
+ nurse saw patient for the last time# Architecture
# Event Modeling