Skip to main content

OxygenSaturation

Type for the client's oxygen saturation measurements

type OxygenSaturation implements VitalSign {
cancelledAt: LocalDateTime
description: String
employee: Employee!
id: VitalSignID!
reason: String
recordedAt: LocalDateTime!
status: RecordStatusType!
type: VitalSignType!
value: Float!
}

Fields

OxygenSaturation.cancelledAt ● LocalDateTime scalar

Shows when the vital sign has been cancelled. Only applicable when status == 'CANCELLED'

OxygenSaturation.description ● String scalar

Additional description, up to 100 characters, optional

OxygenSaturation.employee ● Employee! non-null object

The employee who measured the client's vital sign

OxygenSaturation.id ● VitalSignID! non-null scalar

Unique identifier

OxygenSaturation.reason ● String scalar

Reason for cancelling the vital sign. Only applicable when status == 'CANCELLED'

OxygenSaturation.recordedAt ● LocalDateTime! non-null scalar

Date and time of the vital sign measurement

OxygenSaturation.status ● RecordStatusType! non-null enum

Status of the vital sign

OxygenSaturation.type ● VitalSignType! non-null enum

Type of the recorder vital sign

OxygenSaturation.value ● Float! non-null scalar

Value of the client's oxygen saturation, integer up to 3 digits, in percent

Interfaces

VitalSign interface

Generic interface for the vital signs