<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>FallReportAPI: Integration of Digital Health Systems for Fall Detection in Hospital Systems</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Nadiana Kelly N. Mendes</string-name>
          <email>nadianakelly@alu.ufc.br</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Francisco Victor S. Pinheiro</string-name>
          <email>victor.pinheiro.ce@alu.ufc.br</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Victória T. Oliveira</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Francisco Laurindo C. Junior</string-name>
          <email>laurindocostajr@alu.ufc.br</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Rafael L. Gomes</string-name>
          <email>rafaellgom@gmail.com</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Rossana M. C. Andrade</string-name>
          <email>rossana@ufc.br</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="editor">
          <string-name>PCWrEooUrckResehdoinpgs ISSNc1e6u1r-3w-0s0.o7r3g</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Federal University of Ceará</institution>
          ,
          <addr-line>Fortaleza</addr-line>
          ,
          <country country="BR">Brazil</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>State University of Ceará</institution>
          ,
          <addr-line>Fortaleza</addr-line>
          ,
          <country country="BR">Brazil</country>
        </aff>
      </contrib-group>
      <fpage>316</fpage>
      <lpage>331</lpage>
      <abstract>
        <p>The Internet of Things (IoT) enables devices with processing and communication capabilities to connect to the internet, creating numerous opportunities in both academic and industrial sectors. In healthcare, the adoption of this technology has grown significantly, with applications ranging from emergency services to long-term interventions, driving the development of new systems. One example is Health Risk, a system that identifies falls in patients using wearable devices and machine learning techniques, achieving an accuracy rate of 94.4%. This work focuses on developing an API to integrate two health systems: Health Risk, a mobile solution based on IoT for fall detection, and Smart Hospital, a hospital management system developed for a university hospital. To facilitate this integration, a literature review on the Internet of Things was conducted, aiming to deepen the understanding of development standards and explore successful examples of IoT-based healthcare systems. The developed API, named FallReportAPI, was implemented in Java, using Spring Boot to create the routes, RabbitMQ for message exchange, and PostgreSQL as the database. The integration between the systems was tested through functional API tests and performance tests, ensuring proper operation. With this API, communication between the systems is immediate, allowing notifications of falls detected by Health Risk to be eficiently transmitted to Smart Hospital. This integration aims to reduce response times for medical care in fall situations that require urgent intervention.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Systems Integration</kwd>
        <kwd>Internet of Health Things</kwd>
        <kwd>Application Programming Interface</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        The Internet of Things (IoT) enables objects with computational and communication capabilities to
connect to other devices via the internet, as long as they share these same capabilities. This connectivity
between common objects opens up a range of possibilities and opportunities, both in academia and
industry [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. With the constant evolution of technology in society, it becomes evident how it can be
applied to solve social problems.
      </p>
      <p>
        One of the main sectors that can benefit from this technology is healthcare. The growing application
of the Internet of Things in healthcare has the potential to support patients in various situations, from
emergency treatment in hospitals to long-term interventions. In this context, IoT in healthcare stands
out in the technological landscape, promoting the development of new systems that contribute to
advances in the field [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ].
      </p>
      <p>
        Within this framework, the Group of Computer Networks, Software Engineering, and Systems
(GREat) developed the Health Risk fall detection system, inspired by IoT. This system can play a vital
role in healthcare, especially in monitoring patients and the elderly who require constant attention.
The system assists in providing help in cases of falls, using data from wearable devices as input for
an IoT system that applies Machine Learning models supported by cloud computing. The model used
by Health Risk achieves an accuracy of 94.4%, correctly distinguishing between a fall and events that
do not represent falls [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. To use the application, an Android device and a compatible smartwatch are
required.
      </p>
      <p>
        Another project by GREat is the Smart Hospital, a system developed to serve the hospital units
of Ceará. This system was designed to solve various problems faced by the state’s healthcare units,
standing out as a technological innovation among other existing hospital software. The project is the
result of a partnership between the State University of Ceará and industry, represented by HUAWEI [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
Aiming to improve the integration between the fall detection system and other technologies, the idea
of creating an API (Application Programming Interface) emerged. An API is a means of communication
between systems that facilitates integration, allowing one system to provide information and services
to another without needing to know the underlying software implementation details [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. The API
developed in this work integrates the Health Risk fall detection system with the Smart Hospital system,
contributing to improved hospital care.
      </p>
      <p>The objective of this work is the development of the FallReportAPI, which integrates the fall detection
system, Health Risk, with the hospital system Smart Hospital, aiming to contribute to the hospital
aspect of healthcare. It is expected to positively impact the reduction of response times in healthcare
facilities using Smart Hospital during fall incidents, with a primary focus on the elderly population.</p>
      <p>The structure of this article is organized as follows: In addition to this introductory section, Section 2
presents the Theoretical Foundation, providing the fundamental concepts necessary for understanding
the work. Section 3 covers related works. Section 4 describes the Development of the FallReportAPI,
detailing the process of creation and implementation of the proposed API. In Section 5, the Discussion
of Results is presented, where the tests conducted and the main results are discussed. Finally, Section
6 presents the Conclusion, focusing on the main contributions of the work and directions for future
research.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Theoretical background</title>
      <p>
        Weiser, in his article "The Computer for the 21st Century", explores the future of technologies,
anticipating a scenario that closely resembles what we know today as the Internet of Things. He suggested that
devices could connect in an ubiquitous and seamless manner, becoming practically invisible to the user,
which would allow everyday tasks to be carried out without the need to worry about the installation,
configuration, or maintenance of computational resources [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ].
      </p>
      <p>
        The Internet of Things (IoT) can be seen as an extension of the current Internet, enabling everyday
objects equipped with computing and communication capabilities to connect to the global network.
This connectivity allows for the remote control of these devices and their use as service providers. The
introduction of these new functionalities into the objects we use daily opens up a range of opportunities
for both academic research and industrial applications [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
      <p>
        Currently, IoT applications range from telemetry, which involves data collection in various
configurations, to direct interaction with objects and communication between them. This interaction can occur
both between the objects themselves and between objects and people, either intentionally or discreetly
[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. The literature highlights the wide range of IoT applications in healthcare, bringing innovations
that simplify procedures, save time and resources, customize treatments, and provide essential data for
disease prevention and management [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
      </p>
      <p>
        The Internet of Medical Things includes all IoT-based healthcare solutions, such as connected hospital
systems, vital signs monitoring devices (such as blood oxygen levels and pulse), and systems that use
sensor data to improve patients’ quality of life. The combination of rapid technological advancement
with the development of sensors and actuators ofers promising opportunities for the creation of
intelligent systems in healthcare [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ].
      </p>
      <p>
        With the evolution of intelligent systems and advanced algorithms, it is possible to collect and
analyze large volumes of critical data in real-time, which has the potential to revolutionize research,
management, and intensive care. The integration of medical devices with IoT aims to improve the
quality and eficiency of healthcare services, especially for the elderly, patients with chronic diseases,
and those who require continuous monitoring [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ].
      </p>
      <p>
        The aging population is an unprecedented global challenge. In 2019, about 703 million people
worldwide were 65 years or older, representing 9% of the global population. By 2050, this number is
expected to double, reaching 1.5 billion, which will correspond to approximately 16% of the world’s
population [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ].
      </p>
      <p>
        Data revealed that elderly fall victims have a higher likelihood of being classified with colors that
indicate a greater degree of priority, such as orange and red, which mean very urgent. Falls, even those
from standing height, can result in serious and potentially fatal injuries [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
      </p>
      <p>
        There are already projects focused on elderly health, such as a technological platform that provides
support to elderly individuals, home caregivers, and healthcare professionals [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]. Other examples
include an application developed to help healthcare professionals manage the care of elderly individuals
with special needs [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ], and a taxonomy created to support the development of software focused on
elderly health, organizing the essential characteristics and information for these applications [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ].
      </p>
      <p>
        Health Risk began as one of the projects of the Computer Networks, Software Engineering, and
Systems Group (GREat) 1. The application is a mobile system for fall detection, running on both a
smartwatch and a smartphone. Health Risk was developed in response to the increasing need to monitor
elderly individuals. It was created to intelligently monitor those requiring special care, such as elderly
people who often spend most of their time alone and need special attention. The system monitors the
user’s movement in real-time, detecting falls through the analysis of sensor data and issuing help alerts
when necessary. The application was developed for the Android platform and utilizes the following
sensors: accelerometer and gyroscope. When a fall is detected and there is no response or confirmation
of well-being, the smartwatch connects to the smartphone, which then sends a fall alert to a caregiver
contact, selected by the user and previously registered. To identify potential falls, data collected from
wearable devices are used as input for an IoT system that employs Machine Learning models. In the case
of Health Risk, cloud computing is also utilized. The algorithm used in Health Risk for fall detection has
an accuracy of 94.4%, with a low false negative rate of 4.3% [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. Images of the Health Risk application
can be seen in Figures 1 and 2.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Related Work</title>
      <sec id="sec-3-1">
        <title>3.1. A framework for the elderly first aid system by integrating vision-based fall detection and BIM-based indoor rescue routing</title>
        <p>This study presents an integrated framework for a first aid system designed for elderly individuals,
capable of automatically detecting falls in indoor environments, monitoring the real-time status of the
elderly, and formulating the rescue route with the support of the BIM environment.</p>
        <p>For fall detection, the proposed method involves identifying personal objects in each video frame,
followed by tracking these objects over time. Then, skeleton detection is performed to recognize
the body structure of each individual. Finally, a convolutional neural network (CNN) is employed to
determine whether the elderly person is falling or not.</p>
        <p>Upon detecting a fall, the corresponding internal rescue route is generated, considering the principle
of the shortest path and the building’s attributes. Decision-making for internal rescue routing is carried
out within the BIM environment, using the Revit API to facilitate access to information and inferences.</p>
        <p>
          The experimental results showed high accuracy in detecting falls, reaching a precision of 94.1%.
Furthermore, the proposed method allows the evaluation of accessibility requirements for diferent
exit points, considering the selection of various first aid transport equipment. By proposing a holistic
framework for a first aid system aimed at elderly individuals, this study also demonstrated how the
implementation of computer vision and BIM techniques can efectively address the problem of falls
among the elderly, particularly in environments like nursing homes [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ].
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Smart healthcare in smart cities: wireless patient monitoring system using IoT</title>
        <p>This study presents the proposal for an intelligent ambulance system using emerging technologies such
as 5G and the Internet of Things (IoT). The central objective is to provide support to patients who require
assistance during ambulance transport. The system integrates health monitoring sensors, enabling the
transmission of vital data to the hospital, which speeds up diagnosis and treatment. Additionally, the
patient can request an ambulance and send emergency details to nearby contacts. This approach aims
to optimize response time and provide faster and more eficient medical assistance.</p>
        <p>
          The research demonstrated the efectiveness of remote monitoring of patients’ health parameters
through Android devices and IoT. The application enabled the rapid transmission of vital information
to the hospital, accelerating the medical care process. The implementation of the proposed system
resulted in a shorter response time compared to the traditional system, which still predominantly relies
on phone calls. The system’s ability to remain in real-time contact with the patient for continuous
monitoring was highlighted as a significant advantage. The installation of the system in ambulances
facilitated the transmission of emergency information to the medical center and allowed the patient
to track the ambulance’s route. An essential feature of the system is the ability to send emergency
messages to nearby contacts, including medical information and the patient’s location. The possibility
of expanding the application with security mechanisms to protect health data was also suggested. These
results highlight the system’s potential to improve medical care and save lives [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ].
        </p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. COVID-SAFE: An IoT-Based System for Automated Health Monitoring and</title>
      </sec>
      <sec id="sec-3-4">
        <title>Surveillance in Post-Pandemic Life</title>
        <p>
          This study proposes an IoT-based solution to address public health challenges during pandemics, such
as COVID-19. It presents a framework that integrates low-cost IoT devices, a mobile application,
and machine learning algorithms for real-time data analysis. This solution enables remote health
monitoring for users, including parameters like body temperature and respiratory rate, while also
providing guidance on necessary physical distancing to reduce the virus’s spread. The experiments
conducted demonstrate the system’s efectiveness in accurately measuring the distance between devices
and predicting the risk of infection spread. Furthermore, energy and bandwidth analysis reveals varying
demands in diferent data transmission scenarios, allowing the system to adapt to the specific needs of
various environments. Compared to other existing solutions, this system ofers a comprehensive and
efective approach for continuous health monitoring and mitigating the risk of virus exposure [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ].
        </p>
      </sec>
      <sec id="sec-3-5">
        <title>3.4. LungNet: A hybrid deep-CNN model for lung cancer diagnosis using CT and wearable sensor-based medical IoT data</title>
        <p>This study aims to enhance lung cancer diagnosis by using a hybrid approach that integrates
Convolutional Neural Networks (CNN) with data from the Internet of Medical Things (IoMT). The neural
network, called LungNet, processes computed tomography (CT) images to classify the stage of cancer
with high accuracy. Additionally, data collected by wearable MIoT devices, which monitor various
physiological signals, are incorporated into the diagnostic process, providing a more comprehensive
view of the patient’s condition. This integration results in a more reliable and convenient diagnosis,
while also facilitating remote access to diagnostic services. The paper details the hybrid architecture,
the combination of MIoT data with image features, and proposes an ubiquitous lung cancer staging
classification service.</p>
        <p>LungNet is a system that combines CNNs with IoMT devices, which form a MBAN (Mobile Body Area
Network), providing additional data to enhance the accuracy of the classifier. This improves both the
reliability and accuracy of predictions. After the initial classification, detected nodules are segmented
and further classified based on their size. The performance of LungNet is evaluated using metrics such
as accuracy, sensitivity, and specificity. The system comprises four main stages: data acquisition, data
processing, sub-classification of cancer stage based on nodule size, and diagnosis and decision-making.
Data are collected by MIoT devices like the OMRON HeartGuide and sent to a server where LungNet is
trained, with implementation and training carried out in MATLAB and TensorFlow.</p>
        <p>
          LungNet demonstrated robust results in classifying lung cancer nodules, outperforming other
networks by achieving an overall accuracy of 96.81% and a sensitivity of 97.02%. After applying elimination
criteria, the false positive rate was reduced to an average of 3.35%. Furthermore, compared to transfer
learning methods, LungNet showed superior efectiveness. A distinctive feature of LungNet is its ability
to classify nodules into five classes and four subclasses, positioning itself as a unique approach in the
ifeld. Despite limitations, such as dependency on MBAN data and the need for augmented images,
LungNet shows promise for the development of widely accessible and reliable automatic lung cancer
diagnostic systems [
          <xref ref-type="bibr" rid="ref21">21</xref>
          ].
        </p>
        <p>As presented, all the analyzed works feature systems implemented in the healthcare domain and
utilize APIs for integration between healthcare systems or for the functioning of the necessary resources
in their respective applications. The integrated emergency system for elderly people with fall detection
and BIM routing does not use IoT but employs the API for various purposes related to the integration
and manipulation of BIM model data. On the other hand, the smart medical monitoring system for
smart cities uses IoT to optimize patient monitoring and ambulance tracking, with the API ensuring
eficient communication between health devices, users, and medical centers. The COVID-SAFE system
leverages IoT to collect and transmit health data, connecting a smartphone application to the server via
an API. The hybrid CNN model for lung cancer diagnosis integrates data from wearable sensors with
computed tomography images, using the API to normalize and store this data in a relational database,
enhancing the diagnosis. Finally, this thesis also employs IoT to collect and transmit fall data, with the
API sending patient and fall information to a hospital system.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. API Development</title>
      <p>At the start of the project, a study was conducted on the source code of the Health Risk system, which
was already completed, while the Smart Hospital project was still under development. The focus was
on understanding the patient-related structures and how the frontend communicated with the backend.
Necessary integration points for building the fall report API were identified, along with the essential
data for consistent integration. Based on this analysis, a requirements document was created specifying
the data to be transmitted to the API and consumed by the Smart Hospital system.</p>
      <p>The main systems in this project were at diferent stages of development. To handle these two
applications at diferent stages—one fully completed, Health Risk, and the other still in development,
Smart Hospital—it was necessary to choose the best approach to start developing the fall report API.
After examining the Health Risk code and considering that this application is responsible for sending the
main data to Smart Hospital, the priority was given to integration, focusing initially on communication
with Health Risk. Once this communication phase was completed, the necessary modifications were
made to the Smart Hospital project, which was adjusted in its more advanced version to receive the
data transmitted by the API.</p>
      <p>To solidify the understanding of the API’s communication with Health Risk and to gain a deeper
knowledge of the Health Risk code, a figure was created to represent the communication between Health
Risk and the API, as well as a figure illustrating the architecture of the integration between Health Risk
and Smart Hospital. Figure 3 presents the integration between the Health Risk application and the API,
while Figure 4 outlines the architecture that will serve as the basis for the API’s implementation.</p>
      <p>After understanding how the Health Risk system functions, from the patient data structure and
the data sent by the smartwatch to the training model, the next step was to proceed with the actual
construction of the API. The chosen programming language for development was Java, using the Spring
Boot framework. Java was selected for this project because it is a mature programming language
with extensive documentation, ensuring stability for projects and supporting a long lifecycle. The
combination of Java and Spring Boot allows for the rapid and eficient development of APIs, thanks to
its simplified configuration and the variety of tools available. Applications built with Spring Boot can
be easily scaled to meet growing demands, and the organized and modular code typical of Spring Boot
applications facilitates maintenance and understanding by other developers.</p>
      <p>Considering Figures 3 and 4, it became clear that the integration should occur through the messaging
system that Health Risk was already using, which is RabbitMQ, specifically utilizing the MQTT protocol
via RabbitMQ. As a development strategy, the decision was made to deploy the developed API alongside
a RabbitMQ consumer service, as this would be the best option to encapsulate the logic for fetching data
from the database within a single service. This approach eliminates the need to create data retrieval
logic in the Smart Hospital backend.</p>
      <p>For the construction of the fall report API, the report message indicating a possible patient fall was
considered. This message, containing the necessary data for the report, was formatted in JSON and
was broken down into three related models that include this information: patient data, device data, fall
probability, timestamp of the possible fall, and the type of risk.</p>
      <p>The message was divided into three entities: Device, Patient, and User Report, with the perspective
of system expansion. This way, each of these entities can be supplemented with more information in
the future. Each entity has a dedicated service layer. The developed entities and their organization are
detailed in Figure 5. The fall report API has only three endpoints, which are used to retrieve reports for
a patient within the last 24 hours based on the patient’s email, retrieve all reports from the database,
and retrieve all reports from the database within the last 24 hours.</p>
      <p>Focusing on the communication between the API and the Smart Hospital system, since the fall report
API was developed separately from the Smart Hospital’s backend, no modifications were needed in
the backend. The only changes were made directly to the Smart Hospital’s frontend. Essentially, the
fall report API routes were added to the centralized routing file. A screen dedicated to displaying fall
reports was created in the Smart Hospital’s frontend. The purpose of this new service in the frontend
is to provide healthcare professionals with information on possible falls of remote patients, who are
mostly users of Health Risk.</p>
      <p>The system is designed to receive information only about falls that occurred within the last 24 hours.
This limitation is based on the observation that most fall situations that qualify as emergencies require
attention within this timeframe. Additionally, it is possible to search for fall information for a specific
patient based on their email. It is important to note that, in this work, the patient’s email was used
as the unique search identifier because it is the only unique data available in Health Risk and is also
present in the Smart Hospital’s patient database. However, future project versions are planned to
include more commonly used unique identifiers in the hospital environment, such as CPF (Brazilian
individual taxpayer registry) or SUS (Brazilian Unified Health System) card.</p>
      <p>Figures 6 and 7 represent the screen created in Smart Hospital to display the fall reports of Health
Risk users. The first screen shows all reports within the 24-hour interval, while the second screen
displays the fall reports of a specific patient identified by their email. Figure 8 represents the complete
implementation of the fall report API, illustrating the communication with Health Risk and the transfer
of data to Smart Hospital.</p>
      <p>It is important to note that, to populate data in the Smart Hospital system’s database, an account was
created in the Health Risk application, as represented by Figure 1, and real data was used with the help
of a Samsung smartwatch, specifically the Galaxy Watch4 model. Additionally, to quickly add more
users, some were registered directly in the database using the DBeaver system. The implementation
code for this API is available exclusively in a private project repository due to the confidentiality of the
projects involved.</p>
      <p>
        API testing involves evaluating the quality and functionality of programming interfaces to ensure
they operate as expected and meet specified requirements. This process includes simulating various
interactions with the API and comparing the obtained results with the expected outcomes. The primary
goal of API testing is to ensure that the programming interfaces deliver accurate and eficient results.
To achieve this, multiple requests are made to the API, simulating diferent usage scenarios, and
the responses are analyzed for errors or unexpected behaviors. API testing is a crucial step in API
management, as it ensures quality and reliability before the API is made available to end users [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ].
      </p>
      <p>There are several methods to verify if an API is functioning correctly, each addressing diferent
aspects of its functionality. In this work, functional tests were chosen to ensure the expected results
are achieved. The main focus was on verifying the endpoints, ensuring that requests are processed
correctly and that the returned responses align with expectations.</p>
      <p>For the documentation of the API tests that integrate the Smart Hospital and Health Risk systems, a
detailed document was created covering every stage of the process, including preparation, execution,
and results of the tests. The executed API tests revealed that the integration of the Health Risk and Smart
Hospital systems was successfully accomplished. No issues were found in the communication between
the systems via the API. Additionally, the API performed the necessary communication between the
systems as expected by the requirements elicitation. Figures 9 and 10 depict the tests conducted to
assess the API’s behavior according to the required specifications.</p>
      <p>To verify the operation of Smart Hospital with the data provided by the API, the same functional
tests executed for the API were performed. After creating the screen to receive data via the API, an
analysis of the obtained data was conducted based on scenarios relevant to the proposed requirements.
As shown in Figures 6 and 7, the executed tests yielded satisfactory results, adhering to the acceptance
criteria specified in the project’s requirements document.</p>
      <p>The tests primarily focused on functional requirements, including the validation of data returns for
all users and the retrieval of specific information based on the user’s email, both concerning results
from the last 24 hours. The testing strategy adopted involved conducting functional tests using manual
approaches. For manual testing, the Insomnia tool was used on a DELL i5 device running Windows 11,
while performance testing of the API was conducted using automated tests with Postman, also on the
same device.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Discussion of results</title>
      <p>
        Falls among the elderly are considered urgent situations, especially if there is resulting edema or pain,
as it is necessary to investigate the possibility of trauma [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ]. An example of how falls can also be
considered emergency situations with life-threatening risks is that injuries caused by falls are among
the most common treatments in trauma categories. In Campina Grande, for instance, 3,271 patients
over the age of 60 were treated due to falls. Fractures in the lower limbs caused by falls have a high
mortality rate among elderly patients, as they often result in prolonged periods of immobility [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ].
      </p>
      <p>
        Using this analysis of the work presented, along with the information that falls among the elderly
are categorized as urgent and emergency situations, it is necessary to calculate the average expected
response time of healthcare units for these cases. Taking into account the definition of ISO/IEC 25010,
which defines performance eficiency as performance in relation to the amount of resources used under
specified conditions [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ], we can compare the response time diference between the scenario where
fall information is transmitted to the hospital via API and the response time of the scenario where fall
information is provided to the hospital by telephone.
      </p>
      <p>
        Ambulance services are evaluated by the time elapsed between receiving an emergency call and the
arrival of a vehicle at the patient’s location. In this system, all calls are classified into four categories:
life-threatening situations, emergency situations, urgent situations, and less urgent situations. Focusing
on the emergency and urgent categories, which can encompass fall scenarios, particularly among the
elderly, all ambulance services are required to respond to emergency category calls within an average
of 18 minutes. For urgent category calls, ambulance services should respond to 90% of calls within 120
minutes [
        <xref ref-type="bibr" rid="ref26">26</xref>
        ]. Recent data reveal that the average wait time for the Mobile Emergency Care Service
(SAMU) for serious patients is much higher than expected. According to recent surveys from some
Brazilian states, the average wait time for SAMU service ranges from 15 to 38 minutes [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ].
      </p>
      <p>
        According to the most recent data from 2022, the average SAMU response time varies at diferent
stages of the process. Initially, the Medical Care and Regulation Technicians (TARMs) handle the initial
requests, with 59% of cases being attended to in 1 to 2 minutes, 25% in less than 1 minute, 14% between
2 and 3 minutes, and 2% taking more than 3 minutes. After the initial response, the call is transferred to
a Medical Regulator, who classifies the situation and decides on the type of assistance. This regulatory
response is completed in less than 2 minutes in 46% of cases, between 2 and 4 minutes in 22% of cases,
and takes more than 4 minutes in 32% of occurrences. After regulation, the time for dispatching the
vehicles by the Occurrence Regulator (RO) is less than 1 minute in 79% of cases, between 1 and 2 minutes
in 9% of cases, and more than 2 minutes in 12% of cases. The response team starts to travel to the
occurrence in less than 2 minutes in 67% of cases, between 2 and 4 minutes in 16%, and more than 4
minutes in 17%. The time for the ambulance to reach the occurrence site is under 5 minutes in 14% of
cases, between 5 and 10 minutes in 29%, between 10 and 20 minutes in 35%, and over 20 minutes in 22%
of cases. Considering the total time from receiving the call to the ambulance’s arrival on-site, 11% of
responses are completed in less than 5 minutes, 27% in less than 10 minutes, 36% between 10 and 20
minutes, and 26% take more than 20 minutes [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ]. The representation of this service flow is shown in
the figure 11.
      </p>
      <p>
        It is important to highlight the distinction between SAMU and other available ambulances for care.
In summary, SAMU provides pre-hospital care with a specialized medical team to handle emergency
cases, while ambulances are responsible for transporting patients to hospitals or healthcare units [
        <xref ref-type="bibr" rid="ref29">29</xref>
        ].
      </p>
      <p>In order to obtain a measure that demonstrates the good performance of the API in sending
information about the user who sufered a fall to the desired system, in this case, the Smart Hospital, a
performance test of the API was conducted using the Postman tool, which has performance testing
functionality. The performance test conducted on the API analyzed all API routes. To obtain the API’s
performance test, a test was configured with 100 virtual users, all sending requests to the API over a
period of 3 minutes. The analysis of the API’s performance presented in Figure 12 shows that the API
has consistent performance, with average response times ranging from 29 ms to 40 ms. The overall
average response time is 33.75 ms, calculated as the average of the average response times of the
endpoints (40 ms, 34 ms, 32 ms, and 29 ms). The overall minimum response time is 7 ms, while the
overall maximum response time is 1,878 ms.</p>
      <p>The testing of the API faced several significant limitations. Firstly, it was not possible to evaluate the
API in real scenarios involving its full integration with the Smart Hospital system, as it is still under
development during this study. Additionally, the lack of tests conducted on the SAMU response flow
represents a limitation, as it prevented the assessment of the API’s performance in a real emergency
environment. These constraints limit the scope of the results obtained and indicate the need for future
studies to evaluate the API’s efectiveness in a real-world context.</p>
      <p>Focusing on the TARM service, which captures the same information provided by the API, it is noted
that the registered response time varies from 1 to 3 minutes per call. Responding to a person who
has fallen is classified as an urgent or emergency situation, depending on the patient’s condition after
the incident. Since SAMU is responsible for emergencies, the API’s communication within the SAMU
response flow, particularly during the TARM phase, has the potential to optimize the eficiency of the
process in healthcare units that utilize the Smart Hospital.</p>
      <p>The FallReportAPI, which connects the Health Risk system to the Smart Hospital, provides immediate
updates on the status of monitored users, with an emphasis on falls that require assistance. With this
integration, the expectation is that communication between the patient and the healthcare unit will
become more agile.</p>
      <p>In summary, the FallReportAPI enables a quick update of information regarding falls of patients
linked to the Health Risk. Compared to the traditional communication method via telephone, which
results in a waiting time of 1 to 3 minutes for a caregiver to contact after a fall, the use of the API
promises a significant reduction in this time. Thus, it is expected that the FallReportAPI will positively
impact the eficiency of TARM responses, demonstrating that its performance in expediting service
exceeds traditional methods, such as phone calls to SAMU.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion</title>
      <p>This work aimed to develop an API for integrating two healthcare systems: a mobile fall detection
system based on the Internet of Things and a hospital management system. The project began with a
literature review focusing on systems based on the Internet of Medical Things (IoMT). This was the first
step of the project. Subsequently, a detailed study of the applications involved in the integration was
conducted, specifically the Health Risk and Smart Hospital systems. This study resulted in the creation
of a requirements document, highlighting the information to be transmitted between the systems to
ensure they could collaborate in fall situations.</p>
      <p>The FallReportAPI was developed using Java as the programming language, with the Spring Boot
framework and Hibernate for communication with the SQL database, and PostgreSQL for storing the
obtained data. The FallReportAPI underwent API testing and performance testing, yielding satisfactory
results that met the requirements established in this work, focusing on eficient and coherent integration
between the Health Risk and Smart Hospital systems.</p>
      <p>As future work, it is considered to implement geolocation, allowing the API to collect and transmit the
exact location of a user who has sufered a fall, which would increase the accuracy of emergency services.
Additionally, exploring integration with hospital care flows is essential, ensuring that the fall detection
system can be seamlessly incorporated into emergency and urgent care processes, enabling hospital
teams to dispatch care efectively based on the API’s data. Another future goal would be to expand
the API beyond fall detection to monitor and transmit information about other health emergencies,
such as heart attacks, epileptic seizures, or critical blood pressure elevations, using data from various
connected health devices.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments</title>
      <p>We recognize that the development of FallReportAPI was made possible through a collaborative efort.
To CNPq for the productivity grant from Rossana M. C. Andrade 1D (306362/2021-0), from Rafael Lopes
Gomes DT-2 (303877/2021-9) and Huawei for the partnership in this project.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>B. P.</given-names>
            <surname>Santos</surname>
          </string-name>
          , et al.,
          <article-title>Internet das coisas: da teoria à prática</article-title>
          , in: Minicursos SBRC-Simpósio Brasileiro de Redes de Computadores e Sistemas Distribuídos, volume
          <volume>31</volume>
          ,
          <year>2016</year>
          , p.
          <fpage>16</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>R. O. da Silva</given-names>
            ,
            <surname>J. L. S. de Oliveira</surname>
          </string-name>
          ,
          <article-title>A internet das coisas (iot) com enfoque na saúde</article-title>
          ,
          <source>Tecnologias Em Projeção</source>
          <volume>8</volume>
          (
          <year>2017</year>
          )
          <fpage>77</fpage>
          -
          <lpage>85</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>I.</given-names>
            <surname>Araújo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. B.</given-names>
            <surname>Pereira</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Silva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Linhares</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Marx</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Andrade</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. M.</given-names>
            <surname>Andrade</surname>
          </string-name>
          ,
          <string-name>
            <surname>M. F. de Castro</surname>
          </string-name>
          ,
          <article-title>Machine learning and cloud enabled fall detection system using data from wearable devices: Deployment and evaluation, in: Anais do XXII Simpósio Brasileiro de Computação Aplicada à Saúde</article-title>
          , SBC,
          <year>2022</year>
          , pp.
          <fpage>413</fpage>
          -
          <lpage>424</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>A. F.</given-names>
            <surname>Ferreira Costa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Tomé Oliveira</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V. L. Leitão</given-names>
            <surname>Dantas</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. De Sousa Santos</surname>
          </string-name>
          ,
          <string-name>
            <surname>R. M. De Castro Andrade</surname>
            ,
            <given-names>R. Lopes</given-names>
          </string-name>
          <string-name>
            <surname>Gomes</surname>
          </string-name>
          ,
          <article-title>Impacts of using pdca in the requirements specification process</article-title>
          ,
          <source>in: Proceedings of the XXII Brazilian Symposium on Software Quality</source>
          ,
          <year>2023</year>
          , pp.
          <fpage>244</fpage>
          -
          <lpage>253</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>E. A. G.</given-names>
            <surname>Junior</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. D.</given-names>
            <surname>Rocha</surname>
          </string-name>
          , R. de Souza Maciel, Desenvolvimento de api rest com spring boot,
          <source>RIOS - Revista Científica do Centro Universitário do Rio São Francisco</source>
          <volume>15</volume>
          (
          <year>2021</year>
          )
          <fpage>499</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>M.</given-names>
            <surname>Weiser</surname>
          </string-name>
          ,
          <article-title>The computer for the 21st century, ACM SIGMOBILE mobile computing</article-title>
          and
          <source>communications review 3</source>
          (
          <year>1999</year>
          )
          <fpage>3</fpage>
          -
          <lpage>11</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>M.</given-names>
            <surname>Faccioni Filho</surname>
          </string-name>
          ,
          <article-title>Internet das coisas</article-title>
          ,
          <source>Unisul Virtual</source>
          (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>C. M.</given-names>
            <surname>Rosa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. A. R.</given-names>
            <surname>d</surname>
          </string-name>
          . Souza, J. M. d. Silva,
          <article-title>Inovação em saúde e internet das coisas (iot): Um panorama do desenvolvimento científico e tecnológico</article-title>
          ,
          <source>Perspectivas em Ciência da Informação</source>
          <volume>25</volume>
          (
          <year>2020</year>
          )
          <fpage>164</fpage>
          -
          <lpage>181</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>J. J.</given-names>
            <surname>Rodrigues</surname>
          </string-name>
          ,
          <string-name>
            <surname>D. B. D. R. Segundo</surname>
            ,
            <given-names>H. A.</given-names>
          </string-name>
          <string-name>
            <surname>Junqueira</surname>
            ,
            <given-names>M. H.</given-names>
          </string-name>
          <string-name>
            <surname>Sabino</surname>
            ,
            <given-names>R. M.</given-names>
          </string-name>
          <string-name>
            <surname>Prince</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Al-Muhtadi</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>H. C. De Albuquerque</surname>
          </string-name>
          ,
          <article-title>Enabling technologies for the internet of health things</article-title>
          ,
          <source>Ieee Access</source>
          <volume>6</volume>
          (
          <year>2018</year>
          )
          <fpage>13129</fpage>
          -
          <lpage>13141</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yuehong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zeng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <surname>Y. Fan,</surname>
          </string-name>
          <article-title>The internet of things in healthcare: An overview</article-title>
          ,
          <source>Journal of Industrial Information Integration</source>
          <volume>1</volume>
          (
          <year>2016</year>
          )
          <fpage>3</fpage>
          -
          <lpage>13</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>C.</given-names>
            <surname>Bhatt</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Dey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. S.</given-names>
            <surname>Ashour</surname>
          </string-name>
          ,
          <article-title>Internet of Things and Big Data Technologies for Next Generation Healthcare</article-title>
          , volume
          <volume>23</volume>
          of Studies in Big Data, Springer,
          <year>2017</year>
          .
          <article-title>Includes case studies of smart healthcare applications, such as telemedicine and health management applications</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Bouferguene</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Shen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Al-Hussein</surname>
          </string-name>
          ,
          <article-title>Diference analysis of regional population ageing from temporal and spatial perspectives: A case study in china</article-title>
          ,
          <source>Regional Studies</source>
          <volume>53</volume>
          (
          <year>2019</year>
          )
          <fpage>849</fpage>
          -
          <lpage>860</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>U.</given-names>
            <surname>Nations</surname>
          </string-name>
          , World population ageing, Department of Economic and Social
          <string-name>
            <surname>Afairs</surname>
          </string-name>
          (
          <year>2015</year>
          )
          <fpage>1</fpage>
          -
          <lpage>164</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>C. I.</given-names>
            <surname>Martins</surname>
          </string-name>
          ,
          <string-name>
            <surname>K.</surname>
          </string-name>
          R. da Silva,
          <string-name>
            <given-names>M. C. S.</given-names>
            <surname>Camargos</surname>
          </string-name>
          ,
          <article-title>Fatores sociodemográficos e clínicos associados ao atendimento de idosos vítimas de quedas em um pronto-socorro</article-title>
          , Revista de Administração Hospitalar e Inovação em Saúde (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>R. L. A.</given-names>
            <surname>Almeida</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. d. O. V.</given-names>
            <surname>Paiva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T. N.</given-names>
            <surname>Gouveia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. L. C. T.</given-names>
            <surname>Barroso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. B. F.</given-names>
            <surname>Neto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I. d. S.</given-names>
            <surname>Santos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. L. d. P.</given-names>
            <surname>Evangelista</surname>
          </string-name>
          ,
          <string-name>
            <surname>L. O. M.</surname>
          </string-name>
          <year>d</year>
          . Andrade,
          <string-name>
            <given-names>I. C. d. H. C.</given-names>
            <surname>Barreto</surname>
          </string-name>
          ,
          <string-name>
            <surname>R. M. C. Andrade</surname>
          </string-name>
          ,
          <article-title>Fictitious personas for interdisciplinary team alignment in the requirements elicitation activities</article-title>
          ,
          <source>in: Proceedings of the XVIII Brazilian Symposium on Software Quality (SBQS '19)</source>
          , ACM,
          <year>2019</year>
          , pp.
          <fpage>276</fpage>
          -
          <lpage>285</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>I.</given-names>
            <surname>Barreto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Andrade</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Evangelista</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Santos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Andrade</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Oliveira</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. F.</given-names>
            <surname>Neto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Frota</surname>
          </string-name>
          , Relato de concepção de
          <article-title>aplicação para gestão da saúde da pessoa idosa dependente, in: Anais do XX Simpósio Brasileiro de Computação Aplicada à Saúde</article-title>
          , SBC,
          <year>2020</year>
          , pp.
          <fpage>422</fpage>
          -
          <lpage>427</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <surname>I. L. de Araújo</surname>
            ,
            <given-names>E. C.</given-names>
          </string-name>
          <string-name>
            <surname>Junior</surname>
            ,
            <given-names>P. A. d. S.</given-names>
          </string-name>
          <string-name>
            <surname>Duarte</surname>
          </string-name>
          , I. de Sousa Santos,
          <string-name>
            <surname>P. A. M. de Oliveira</surname>
          </string-name>
          ,
          <string-name>
            <surname>C. M. O. Mendes</surname>
          </string-name>
          ,
          <string-name>
            <surname>R. M. de Castro Andrade</surname>
          </string-name>
          ,
          <article-title>Towards a taxonomy for the development of older adults healthcare applications</article-title>
          ., in: HICSS,
          <year>2020</year>
          , pp.
          <fpage>1</fpage>
          -
          <lpage>10</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Xiao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>A framework for the elderly first aid system by integrating visionbased fall detection and bim-based indoor rescue routing</article-title>
          ,
          <source>Advanced Engineering Informatics</source>
          <volume>54</volume>
          (
          <year>2022</year>
          )
          <fpage>101766</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>M.</given-names>
            <surname>Poongodi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sharma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hamdi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Maode</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Chilamkurti</surname>
          </string-name>
          ,
          <article-title>Smart healthcare in smart cities: wireless patient monitoring system using iot</article-title>
          ,
          <source>The Journal of Supercomputing</source>
          (
          <year>2021</year>
          )
          <fpage>1</fpage>
          -
          <lpage>26</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>S. S.</given-names>
            <surname>Vedaei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Fotovvat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. R.</given-names>
            <surname>Mohebbian</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. M. E.</given-names>
            <surname>Rahman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K. A.</given-names>
            <surname>Wahid</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Babyn</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. R.</given-names>
            <surname>Marateb</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Mansourian</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Sami</surname>
          </string-name>
          ,
          <article-title>Covid-safe: An iot-based system for automated health monitoring and surveillance in post-pandemic life</article-title>
          ,
          <source>IEEE Access 8</source>
          (
          <year>2020</year>
          )
          <fpage>188538</fpage>
          -
          <lpage>188551</lpage>
          . doi:
          <volume>10</volume>
          .1109/ACCESS.
          <year>2020</year>
          .
          <volume>3030194</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>N.</given-names>
            <surname>Faruqui</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Yousuf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Whaiduzzaman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Azad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barros</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Moni</surname>
          </string-name>
          ,
          <article-title>Lungnet: A hybrid deep-cnn model for lung cancer diagnosis using ct and wearable sensor-based medical iot data</article-title>
          ,
          <source>Computers in Biology and Medicine</source>
          <volume>139</volume>
          (
          <year>2021</year>
          )
          <fpage>104961</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <surname>Astera</surname>
          </string-name>
          , The ultimate guide to api testing,
          <year>2024</year>
          . URL: https://www.astera.com/pt/type/blog/ the-ultimate
          <article-title>-guide-to-api-testing/</article-title>
          , acesso em:
          <volume>07</volume>
          <fpage>ago</fpage>
          .
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <article-title>Secretaria da Saúde do Estado do Ceará, Quedas em idosos: entenda riscos, prevenção e saiba quando levar a uma emergência</article-title>
          ,
          <year>2023</year>
          . URL: https://www.saude.ce.gov.br/
          <year>2023</year>
          /08/29/ quedas-em
          <article-title>-idosos-entenda-riscos-prevencao-e-saiba-quando-levar-a-uma-emergencia/</article-title>
          , acesso em:
          <volume>09</volume>
          <fpage>ago</fpage>
          .
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <article-title>Governo do Estado da Paraíba, Lesões causadas por quedas são atendimentos mais comuns no trauma</article-title>
          ,
          <year>2023</year>
          . URL: https://paraiba.pb.gov.br/noticias/ lesoes-causadas
          <article-title>-por-quedas-sao-atendimentos-mais-comuns-no-trauma-cg, acesso em: 09 ago</article-title>
          .
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <surname>ISO</surname>
          </string-name>
          , Iso/iec 25010:
          <article-title>Systems and software engineering - systems and software quality requirements and evaluation (square) - system and software quality models</article-title>
          ,
          <year>2011</year>
          . Acesso em:
          <volume>9</volume>
          <fpage>ago</fpage>
          .
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <surname>Nufield</surname>
            <given-names>Trust</given-names>
          </string-name>
          , Ambulance response times,
          <year>2023</year>
          . URL: https://www.nufieldtrust.org.uk/resource/ ambulance-response-times,
          <source>acesso em: 9 ago</source>
          .
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <fpage>G1</fpage>
          ,
          <article-title>Samu demora mais do que o tempo recomendado para atender casos graves em 5 capitais, 2019</article-title>
          . URL: https://g1.globo.com/ciencia-e-saude/noticia/2019/12/26/ samu-demora
          <article-title>-mais-do-que-o-tempo-recomendado-para-atender-casos-graves-em-5-capitais</article-title>
          . ghtml, acesso em:
          <volume>9</volume>
          <fpage>ago</fpage>
          .
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>H. L. A.</given-names>
            <surname>Forastieri Filho</surname>
          </string-name>
          ,
          <string-name>
            <surname>C. M. F. de Araujo</surname>
            ,
            <given-names>A. d. S. M.</given-names>
          </string-name>
          <string-name>
            <surname>Junior</surname>
            ,
            <given-names>H. L. C.</given-names>
          </string-name>
          <string-name>
            <surname>Forastieri</surname>
          </string-name>
          , et al.,
          <article-title>Tempo resposta no samu-192 e suas implicações</article-title>
          ,
          <source>Cadernos UniFOA 17</source>
          (
          <year>2022</year>
          )
          <fpage>173</fpage>
          -
          <lpage>183</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <surname>G. R. de Siqueira</surname>
          </string-name>
          ,
          <article-title>Diferença entre samu e ambulância: entenda as principais distinções</article-title>
          ,
          <year>2023</year>
          . URL: https://brasilemergenciasmedicas.com.
          <article-title>br/qual-a-diferenca-entre-</article-title>
          <string-name>
            <surname>samu-</surname>
          </string-name>
          e-ambulancia/, acesso em:
          <volume>7</volume>
          <fpage>set</fpage>
          .
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>