contents
1{
2 "deviceId": "123456",
3 "timestamp": "2022-03-01T15:35:22.000Z",
4 "data": {
5 "temperature": 23.4,
6 "humidity": 41.2,
7 "pressure": 1012.3,
8 "airQuality": {
9 "pm25": 32,
10 "pm10": 58,
11 "o3": 31,
12 "co": 78
13 },
14 "location": {
15 "latitude": 37.7749,
16 "longitude": -122.4194
17 }
18 }
19}
The IoT Data Response is an example response of an IoT Data API which returns the device data, location, and sensor data. The device information includes a unique identifier and the type of device.
The location data includes the latitude, longitude, and altitude of the device. The sensor data includes a timestamp and the measured values from each sensor. The sensor data can include various types of data such as temperature, humidity, light, and motion.
The JSON response can be used to analyze the data and gain insights into the performance and behavior of the IoT devices.