Skip to main content

fridgetag

Table: fridgetag

The fridgetag table stores detailed temperature monitoring and alarm data for cold chain fridges.
It is used for tracking fridge performance, alarms, sensor readings, and related metadata at vaccination centers.


Columns

Column NameData TypeConstraintsDescription
fridgeTagIdint(11)NOT NULL, AUTO_INCREMENTUnique identifier for each fridge tag record
createdDatedatetimeNULLTimestamp when the record was created
lastEditedDatedatetimeNULLTimestamp when the record was last modified
alarmvarchar(255)NULLCurrent alarm status or message
alarmIndicationvarchar(255)NULLAlarm indication details
alarmTACCOnevarchar(255)NULLAlarm TACC One value
alarmTACCZerovarchar(255)NULLAlarm TACC Zero value
avrgTempvarchar(255)NULLAverage temperature recorded
batteryWarningLimitvarchar(255)NULLBattery warning threshold
cIDvarchar(255)NULLDevice identifier
configurationvarchar(255)NULLDevice configuration details
datevarchar(255)NULLDate of reading or record
detReportvarchar(255)NULLDetailed report reference
devicevarchar(255)NULLDevice type or name
errorCountvarchar(255)NULLNumber of errors recorded
errorTimevarchar(255)NULLTime when error occurred
errorsvarchar(255)NULLError details
eventsvarchar(255)NULLEvent logs
fwVersionvarchar(255)NULLFirmware version of the device
intSensorvarchar(255)NULLInternal sensor status
intSensorTimeoutvarchar(255)NULLInternal sensor timeout details
locationIdint(11)NULLLocation ID for the fridge
lotvarchar(255)NULLLot or batch identifier
mappingIdint(11)NULLMapping reference ID
maxTempvarchar(255)NULLMaximum temperature recorded
maxTempTimevarchar(255)NULLTime of maximum temperature
measurementDelayvarchar(255)NULLMeasurement delay setting
minTempvarchar(255)NULLMinimum temperature recorded
minTempTimevarchar(255)NULLTime of minimum temperature
movingAveragevarchar(255)NULLMoving average temperature
offSetvarchar(255)NULLTemperature offset
sensorvarchar(255)NULLSensor type
serialvarchar(255)NULLSerial number of device
tAccISTvarchar(255)NULLTemperature accuracy IST
tempAlarmvarchar(255)NULLTemperature alarm status
tempAlarmLowerLimitvarchar(255)NULLLower limit for temperature alarm
tempAlarmLowerLimitTimevarchar(255)NULLTime when lower limit alarm triggered
tempAlarmUpperLimitvarchar(255)NULLUpper limit for temperature alarm
tempAlarmUpperLimitTimevarchar(255)NULLTime when upper limit alarm triggered
tempUnitvarchar(255)NULLUnit of temperature measurement
testResvarchar(255)NULLTest result
testTimevarchar(255)NULLTime of test
timeBattAlarmvarchar(255)NULLBattery alarm timestamp
timeBattWarningvarchar(255)NULLBattery warning timestamp
timeReportCreationvarchar(255)NULLTime when report was created
timeoutvarchar(255)NULLTimeout details
useExtDevicesvarchar(255)NULLExternal devices usage flag
userAlarmConfigvarchar(255)NULLUser-configured alarm details
versionvarchar(255)NULLDevice version
zonevarchar(255)NULLZone information
createdByUserIdint(11)NULLUser who created the record
lastEditedByUserIdint(11)NULLUser who last edited the record
vaccinationCenterIdint(11)NULLVaccination center associated with the fridge
ilrMonitoringIdint(11)NULLILR monitoring identifier
ExttAccISTvarchar(255)NULLExternal temperature accuracy IST
alarmTriggerTimeOnevarchar(255)NULLAlarm trigger time one
alarmTriggerTimeZerovarchar(255)NULLAlarm trigger time zero
extSensorTSSTvarchar(255)NULLExternal sensor timestamp
intSensorTSSTvarchar(255)NULLInternal sensor timestamp
activationDatevarchar(255)NULLDevice activation date
checkedTSAMvarchar(255)NULLChecked timestamp for SAM
checkedTSPMvarchar(255)NULLChecked timestamp for SPM
CAonevarchar(255)NULLCalibration alarm one
CAzerovarchar(255)NULLCalibration alarm zero
TAmbOnevarchar(255)NULLAmbient temperature one
TAmbzerovarchar(255)NULLAmbient temperature zero

Indexes

  1. PRIMARY - Primary key on fridgeTagId
  2. fridgeTag_fridgeTagMappingId_fridgeTagMaping_id_FK - Index on mappingId
  3. fridgeTag_vaccinationCenterId_vaccinationcenter_mappedId_FK - Index on vaccinationCenterId

Foreign Key Relations

  • None explicitly defined in this table, but mappingId can reference mapping tables and vaccinationCenterId links to vaccinationcenter.

Usage Notes

  • Tracks detailed fridge sensor data, temperature logs, alarms, and device configurations for cold chain management.
  • Helps monitor vaccine storage conditions and ensures compliance with temperature standards.
  • Fields like maxTemp, minTemp, avrgTemp, and tempAlarm are critical for monitoring.
  • createdByUserId and lastEditedByUserId fields allow audit tracking.
  • Integration with vaccination centers and ILR monitoring enables centralized cold chain oversight.