Skip to main content

VitalEntry

Represents a single vital signs entry with various health measurements taken at a specific time. This type is used within VitalSignReportCard to record client health metrics.

type VitalEntry {
bloodPressure: BloodPressureMeasurement
bodyTemperature: Measurement
fluidExport: [FluidExportMeasurement]
fluidIntake: [FluidIntakeMeasurement]
glucose: Measurement
heartRate: Measurement
oxygenSaturation: Measurement
recordedAt: Time
weight: Measurement
}

Fields

VitalEntry.bloodPressure ● BloodPressureMeasurement object

Blood pressure measurement including systolic and diastolic values.

VitalEntry.bodyTemperature ● Measurement object

Body temperature measurement.

VitalEntry.fluidExport ● [FluidExportMeasurement] list object

Fluid export (output) measurements.

VitalEntry.fluidIntake ● [FluidIntakeMeasurement] list object

Fluid intake measurements.

VitalEntry.glucose ● Measurement object

Blood glucose level measurement.

VitalEntry.heartRate ● Measurement object

Heart rate measurement in beats per minute.

VitalEntry.oxygenSaturation ● Measurement object

Oxygen saturation level measurement (SpO2).

VitalEntry.recordedAt ● Time scalar

The date and time when the vital signs were recorded.

VitalEntry.weight ● Measurement object

Body weight measurement.

Member Of

VitalSignReportCard object