# Vitals

# Description

This section covers the flow of vitals section

graph TD;
    AppointmentEncounter --> VitalEncounter1
    AppointmentEncounter --> VitalEncounter2
    VitalEncounter1-->Observation1
    VitalEncounter1-->Observation2
    VitalEncounter2-->Observation3
    VitalEncounter2-->Observation4

# Mockup

Link

# Add Vitals

  1. Every vital detail will have a separate Observation resource. We need to link it to the Encounter resource.
  2. Create an encounter resource to link all the observation resources. This encounter resource acts as a binding resource to all observation resources created at that time.
  3. Every time a new vital entry is made a new encounter resource will be created.
  4. Link the appointment encounter of the day to this encounter.

# Resources

1. Encounter Resource

2. Observation resource