The Eversensors resource gives you access to data readings returned from all types of sensors.
Sensors report metadata on their own identity and status, in addition to detecting and reporting the status of the equipment to which the sensor is attached. Messages from sensors include both type-independent and type-specific information.
- Type-independent information includes metadata about the sensor itself, such as the type and MAC address, information about the gateway through which readings are received, and a UNIX-format date-time value for when the readings are reported.
- Type-specific information reports either temperature-humidity or vibrational-electrical readings for the monitored equipment.
See details of the data schema below.
Resource summary
- Base URI is
https://api.data.everactive.com/ds/{ds-api-version}
Eversensors endpoints | Supported operations |
---|---|
{baseURI}/eversensors | GET retrieves a list of sensors. |
{baseURI}/eversensors/{macAddress}/readings | GET retrieves reading from an individual sensor. |
{baseURI}/eversensors/{macAddress}/readings/last | GET retrieves the latest reading from an individual sensor. |
Retrieving sensors
A GET request to the {baseURI}/eversensors
endpoint returns a list of sensors. You can retrieve all sensors in your installation, or filter the list by various criteria. You can get paged results for large lists.
Query parameters | Description |
---|---|
mac-address | A match string used to filter the returned Eversensors by the macAddress property. Returns all sensors whose ID contains this string. The match is case-insensitive. |
page page-size sort-by sort-dir | Get paged and sorted results. |
Finding individual sensors
Individual sensors are uniquely identified by their MAC address.
A MAC address is a string that uses a colon delimiter between hexadecimal pairs. For example:
"bc:5e:a1:00:00:0b:26:07"
The last pair is printed in large letters on each sensor, and typically used to limit search. If multiple sensors match a search for that string, check the entire string to find the correct sensor.
Retrieving sensor readings
To query the readings for a particular sensor, send a GET request to:
{baseURI}/eversensors/{macAddress}/readings
Path parameter | Description |
---|---|
{macAddress} | The full MAC address of the sensor, consisting of 6 colon-separated hexadecimal pairs. |
Use query parameters to specify a time range. Times are expressed as absolute time values in UNIX format (seconds from 1970-01-01).
Query parameters | Description |
---|---|
start-time end-time | The time range of readings to retrieve, as UNIX time values Range is inclusive. The maximum difference allowed between the two time parameters is 1 day (24 hours, 86400 seconds). |
Response
The response contains a JSON array of data points in ascending order by time. The properties returned in the response varies according to the type of the sensor.
Retrieving the latest reading
To retrieve the last reading received from a particular sensor, send a GET request to:
{baseURI}/eversensors/{macAddress}/readings/last
Response
The response contains a JSON object with the properties appropriate to the type of the sensor.
Sensor readings data schema
The schema for all sensor readings includes information about the sensor type and MAC address, the time and date of the reading, and the gateway through which the reading was received. Beyond this type-independent metadata, properties for each type of sensor report the values detected in monitoring the associated equipment.
Type-independent metadata
All readings include the following properties.
Property | Description |
---|---|
vcap | Electrical potential of the capacitor or capacitors on the Eversensor, in volts (V). |
scap | Optional. Not present if an Eversensor does not have a super capacitor. Electrical potential of super capacitors on the Eversensor, in volts (V). |
schema | A string that identifies the type of data returned by this sensor. Currently, sensors return either temperature-humidity data or vibration-electrical data |
schemaVersion | The version of the schema used to return sensor data. |
timestamp | The Unix-format absolute time when this message was sent. Seconds from 1970-01-01 00:00:00.0000Z |
readingDate | The timestamp represented in ISO-8601 format For example: 2022-03-31T09:14:23.234000Z |
rssiUplink | The signal strength from the sensor to the gateway as measured by the gateway. |
unsolicited | True if the reading was sent by the Eversensor with a wake-up signal being sent, false if the reading was requested by a gateway. |
gatewaySerialNumber | The serial number of the gateway through which this reading was reported. |
macAddress | The MAC address of the reporting sensor. |
packetNumberGateway packetNumberEversensor | An integer number that increments with each packet a sensor or gateway sends. Can be used to determine if all packets have been received. NOTE: It is possible for the same packet to be sent via more than one gateway, resulting in duplicate sensor packet values. This is rare for second generation sensors, but can happen with first generation temperature-humidity sensors. |
Type-dependent monitoring data
The readings themselves are contained in the following properties, according to the type of sensor.
Sensor data properties | |
---|---|
humidityMeasurements temperatureMeasurements | An array of specific values for the monitored equipment, with a 0-based index that orders multiple readings within the reporting interval. -- For sensors that monitor steam traps, the values describe the monitored equipment. -- For sensors that monitor machine health, the values describe the internal humidity and temperature of the sensor itself, and the temperature of the thermal energy harvester (TEG) on the sensor. |
vibrationalMeasurements electricalFieldMeasurements | Optional. Returned only for sensors that monitor machine health. An array of specific values for the monitored equipment. Each array includes both the measurements themselves, and metadata that describes how collection is configured for the sensor. |
Example temperature-humidity readings
The following example shows the temperature-humidity properties in a message body, using example values.
{
"vcap": 4,
"schema": "https://evr.ac/schemas/platform/eversensor/temperature-humidity/v1/reading",
"timestamp": 1645760423,
"macAddress": "00:a0:50:0b:26:07",
"rssiUplink": -81,
"readingDate": "2022-02-25T03:40:23.203000Z",
"schemaVersion": "v1",
"gatewaySerialNumber": "F82KP42",
"packetNumberGateway": 108055,
"humidityMeasurements": [
{
"value": 36.828125,
"sensorIndex": 0
}
],
"packetNumberEversensor": 117,
"temperatureMeasurements": [
{
"value": 296.8125,
"sensorIndex": 0
},
{
"value": 296.375,
"sensorIndex": 1
},
{
"value": 323,
"sensorIndex": 2
}
]
}
Json Schema for temperature-humidity readings
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://evr.ac/schemas/platform/eversensor/temperature-humidity/v1/reading",
"$comment": "Reading from temperature and humidity eversensors",
"type": "object",
"title": "Temperature and humidity reading",
"description": "Reading from temperature and humidity eversensors.",
"default": {},
"$defs": {},
"required": [
"gatewaySerialNumber",
"macAddress",
"packetNumberEversensor",
"readingDate",
"schema",
"schemaVersion",
"timestamp"
],
"properties": {
"gatewaySerialNumber": {
"$id": "#/properties/gatewaySerialNumber",
"type": "string",
"title": "The gateway serial number",
"description": "Id of the gateway that transported this reading.",
"examples": [
"4Y6ZL43"
]
},
"macAddress": {
"$id": "#/properties/macAddress",
"type": "string",
"title": "The eversensor's MAC address",
"description": "MAC address of the eversensor.",
"examples": [
"00:aa:03:23:45:00:20:f3"
]
},
"packetNumberGateway": {
"$id": "#/properties/packetNumberGateway",
"type": "integer",
"title": "The packet number from the Gateway",
"description": "A counter that increments with each packet received by the gateway. Range comes from implementation as unsigned int32. Starts at 1, rolls over to 0.",
"minimum": 0,
"maximum": 4294967295,
"examples": [
235
]
},
"packetNumberEversensor": {
"$id": "#/properties/packetNumberEversensor",
"type": "integer",
"title": "The packet number from the eversensor",
"description": "A counter that increments when the sensor node generates a packet. Range comes from u1 implementation (1 byte). Starts at 1, rolls over at 0.",
"minimum": 0,
"maximum": 255,
"examples": [
12
]
},
"readingDate": {
"$id": "#/properties/readingDate",
"type": "string",
"title": "reading timestamp in ISO8601",
"description": "Date and Time in human-readable format.",
"examples": [
"2022-01-12T21:34:31.000Z"
]
},
"schema": {
"$id": "#/properties/schema",
"type": "string",
"title": "The schema URI",
"description": "Reference to the schema definition for this document.",
"const": "https://evr.ac/schemas/platform/eversensor/temperature-humidity/v1/reading"
},
"schemaVersion": {
"$id": "#/properties/schemaVersion",
"type": "string",
"title": "The schema version",
"description": "Major version of the schema for this document.",
"examples": [
"v1"
]
},
"timestamp": {
"$id": "#/properties/timestamp",
"type": "integer",
"title": "Readings timestamp ",
"description": "Readings epoch Unix timestamp.",
"examples": [
1642023271
]
},
"rssiUplink": {
"$id": "#/properties/rssiUplink",
"type": "number",
"title": "RSSI Uplink",
"description": "The RSSI of the sensor -> gateway signal, as measured by the gateway.",
"examples": [
-79
]
},
"rssiDownlink": {
"$id": "#/properties/rssiDownlink",
"type": "number",
"title": "RSSI Downlink",
"description": "The RSSI of the gateway -> sensor signal as measured by the sensor.",
"examples": [
-79
]
},
"vcap": {
"$id": "#/properties/vcap",
"type": "number",
"title": "vcap",
"description": "Electrical potential of the capacitor(s) on the sensor, in volts (V).",
"minimum": 0,
"examples": [
4.125
]
},
"scap": {
"$id": "#/properties/scap",
"type": "number",
"title": "scap",
"description": "Electrical potential of the super capacitor on the sensor, in volts (V).",
"minimum": 0,
"examples": [
4.825
]
},
"unsolicited": {
"$id": "#/properties/unsolicited",
"type": "boolean",
"title": "unsolicited",
"description": "Indicates if the reading was requested by the gateway (false) or was sent by the Eversensor without a wakeup signal being sent (true).",
"examples": [
false
]
},
"humidityMeasurements": {
"$id": "#/properties/humidityMeasurements",
"type": "array",
"title": "Humidity Measurements (%)",
"description": "Readings from the humidity instruments. Values are given in Percentage",
"examples": [
[
{
"sensorIndex": 0,
"value": 35.7
}
]
],
"additionalItems": false,
"items": {
"$id": "#/properties/humidityMeasurements/items/0",
"type": "object",
"title": "Humidity sensors readings (%)",
"description": "Readings from the humidity instruments. The value is given in Percentage. Each instrument is identified by a immutable numeric index.",
"examples": [
{
"sensorIndex": 0,
"value": 35.7
}
],
"required": [
"sensorIndex",
"value"
],
"properties": {
"sensorIndex": {
"$id": "#/properties/humidityMeasurements/items/0/properties/sensorIndex",
"type": "integer",
"title": "Sensor index",
"description": "sequence number assigned to the instrument.",
"examples": [
0
]
},
"value": {
"$id": "#/properties/humidityMeasurements/items/0/properties/value",
"type": "number",
"title": "Reading value",
"description": "The value of the instrument's reading (%).",
"examples": [
35.7
]
}
},
"additionalProperties": false
}
},
"temperatureMeasurements": {
"$id": "#/properties/temperatureMeasurements",
"type": "array",
"title": "Temperature Measurements (K)",
"description": "Readings from the temperature instruments. Values are given in Kelvin.",
"examples": [
[
{
"sensorIndex": 0,
"value": 4037
}
]
],
"additionalItems": false,
"items": {
"$id": "#/properties/temperatureMeasurements/items/0",
"type": "object",
"title": "Temperature sensors readings (K)",
"description": "Readings from the temperature instruments. Values are given in Kelvin. Each instrument is identified by a immutable numeric index.",
"examples": [
{
"sensorIndex": 0,
"value": 4037
}
],
"required": [
"sensorIndex",
"value"
],
"properties": {
"sensorIndex": {
"$id": "#/properties/temperatureMeasurements/items/0/properties/sensorIndex",
"type": "integer",
"title": "Sensor index",
"description": "sequence number assigned to the instrument.",
"examples": [
0
]
},
"value": {
"$id": "#/properties/temperatureMeasurements/items/0/properties/value",
"type": "number",
"title": "Reading value",
"description": "The value of the instrument's reading (K).",
"examples": [
4037
]
}
},
"additionalProperties": false
}
},
"probeState": {
"$id": "#/properties/probeState",
"title": "STM Probe State",
"description": "Code indicating the state of the STM2 temperature probes",
"type": "integer",
"enum": [0,2,4,6]
}
},
"additionalProperties": false
}
Vibrational-electrical data
The following example shows the vibrational-electrical properties in a message body, using example values.
{
"gatewaySerialNumber": "AP16210009",
"macAddress": "bc:5e:a1:ff:fe:00:0c:e8",
"packetNumberGateway": 196753,
"packetNumberEversensor": 147,
"readingDate": "2022-02-05T09:27:06-05:00",
"schema": "https://evr.ac/schemas/platform/eversensor/vibration-electrical/v2/reading",
"schemaVersion": "v2",
"scap": 4.375,
"vcap": 4.3125,
"unsolicited": false,
"rssiDownlink": -59,
"rssiUplink": -89,
"timestamp": 1644071226,
"humidityMeasurements": [
{
"sensorIndex": 0,
"value": 35.7
}
],
"temperatureMeasurements": [
{
"sensorIndex": 0,
"value": 423.15
},
{
"sensorIndex": 1,
"value": 315.15
}
],
"vibrationalMeasurements": {
"velocity": {
"maxLevels": {
"x": 0.19399823,
"y": 0.17643845,
"z": 0.5119118
},
"overallLevels": {
"x": 0.19399823,
"y": 0.17643845,
"z": 0.5119118
},
"spectralPeaks": {
"x": [{
"frequency": 7.8125,
"magnitude": 0.06897583
}, {
"frequency": 9.375,
"magnitude": 0.04064275
}, {
"frequency": 22.991072,
"magnitude": 0.039442666
}, {
"frequency": 24.360796,
"magnitude": 0.029434549
}, {
"frequency": 14.0625,
"magnitude": 0.027095785
}, {
"frequency": 11.9140625,
"magnitude": 0.022991322
}, {
"frequency": 28.125,
"magnitude": 0.019158505
}, {
"frequency": 15.625,
"magnitude": 0.017242096
}, {
"frequency": 37.760414,
"magnitude": 0.014369343
}],
"y": [{
"frequency": 9.709822,
"magnitude": 0.04977825
}, {
"frequency": 17.1875,
"magnitude": 0.035053533
}, {
"frequency": 15.625,
"magnitude": 0.034487914
}, {
"frequency": 19.726562,
"magnitude": 0.013794421
}, {
"frequency": 28.125,
"magnitude": 0.013546962
}, {
"frequency": 45.3125,
"magnitude": 0.013295783
}, {
"frequency": 42.1875,
"magnitude": 0.009031309
}, {
"frequency": 10.9375,
"magnitude": 0
}, {
"frequency": 14.0625,
"magnitude": 0
}],
"z": [{
"frequency": 7.8125,
"magnitude": 0.091247104
}, {
"frequency": 9.375,
"magnitude": 0.08621979
}, {
"frequency": 10.9375,
"magnitude": 0.049268447
}, {
"frequency": 12.5,
"magnitude": 0.048198607
}, {
"frequency": 39.84375,
"magnitude": 0.01656298
}, {
"frequency": 25,
"magnitude": 0.0152401
}, {
"frequency": 20.3125,
"magnitude": 0.013264153
}, {
"frequency": 21.875,
"magnitude": 0.012315252
}, {
"frequency": 28.125,
"magnitude": 0.009578322
}]
},
"configurationMetadata": {
"units": "mm/s",
"sampleRate": 3200,
"sampleCount": 4096,
"bitsPerSample": 12,
"sampleFullScale": 2
}
},
"acceleration": {
"maxLevels": {
"x": 536.3012,
"y": 1685.5181,
"z": 10036.494
},
"overallLevels": {
"x": 536.3012,
"y": 1685.5181,
"z": 10036.494
},
"spectralPeaks": {
"x": 536.3012,
"y": 1685.5181,
"z": 10036.494
},
"configurationMetadata": {
"units": "mg",
"sampleRate": 3200,
"sampleCount": 4096,
"bitsPerSample": 12,
"sampleFullScale": 2
}
},
"displacement": {
"maxLevels": {
"x": 536.3012,
"y": 1685.5181,
"z": 10036.494
},
"overallLevels": {
"x": 536.3012,
"y": 1685.5181,
"z": 10036.494
},
"spectralPeaks": {
"x": 536.3012,
"y": 1685.5181,
"z": 10036.494
},
"configurationMetadata": {
"units": "mm",
"sampleRate": 3200,
"sampleCount": 4096,
"bitsPerSample": 12,
"sampleFullScale": 2
}
}
},
"electricalFieldMeasurements": {
"maxLevel": 7.183387,
"overallLevel": 7.183387,
"spectral_peaks": [{
"frequency": 36.085148,
"magnitude": 7.183387
}, {
"frequency": 21.456553,
"magnitude": 1.9035815
}],
"configurationMetadata": {
"units": "micro-teslas",
"sampleRate": 800,
"sampleCount": 512,
"bitsPerSample": 9
}
}
}
Json Schema for vibrational-electrical data
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://evr.ac/schemas/platform/eversensor/vibration-electrical/v2/reading",
"type": "object",
"title": "Vibration and electrical reading",
"description": "Reading from vibration and electrical eversensors.",
"$defs": {
"xValue": {
"type": "number",
"title": "X",
"description": "",
"examples": [
0.5119118
]
},
"yValue": {
"type": "number",
"title": "Y",
"description": "",
"examples": [
0.19399823
]
},
"zValue": {
"type": "number",
"title": "Z",
"description": "",
"examples": [
0.17643845
]
},
"spectralReading": {
"type": "object",
"title": "Spectral Reading",
"description": "Frequency and Magnitude.",
"examples": [
{
"frequency": 7.8125,
"magnitude": 0.06897583
}
],
"required": [
"frequency",
"magnitude"
],
"properties": {
"frequency": {
"type": "number",
"title": "The frequency",
"description": "",
"examples": [
7.8125
]
},
"magnitude": {
"type": "number",
"title": "The magnitude",
"description": "",
"examples": [
0.06897583
]
}
},
"additionalProperties": false
},
"configurationMetadata": {
"type": "object",
"title": "Configuration Metadata",
"description": "",
"examples": [
{
"units": "micro-teslas",
"sampleRate": 800,
"sampleCount": 512
}
],
"required": [
"units",
"sampleRate",
"sampleCount"
],
"properties": {
"units": {
"type": "string",
"title": "Unit of measure",
"description": "Units of measure for reported values.",
"enum": [
"mm",
"mg",
"mm/s",
"micro-teslas",
"K",
"percent"
],
"examples": [
"mg",
"mm/s",
"micro-teslas"
]
},
"sampleRate": {
"type": "integer",
"title": "Sample Rate",
"description": "",
"examples": [
800
]
},
"sampleCount": {
"type": "integer",
"title": "Sample Count",
"description": "",
"examples": [
512
]
},
"bitsPerSample": {
"type": "integer",
"title": "Number of bits per sample",
"description": "",
"examples": [
12
]
},
"sampleFullScale": {
"type": "integer",
"title": "",
"description": "",
"examples": [
2
]
}
}
}
},
"required": [
"gatewaySerialNumber",
"macAddress",
"packetNumberEversensor",
"readingDate",
"schema",
"schemaVersion",
"timestamp"
],
"properties": {
"gatewaySerialNumber": {
"$id": "#/properties/gatewaySerialNumber",
"type": "string",
"title": "The gateway serial number",
"description": "Id of the gateway that transported this reading.",
"examples": [
"AP16210009"
]
},
"macAddress": {
"$id": "#/properties/macAddress",
"type": "string",
"title": "The eversensor's MAC address",
"description": "MAC address of the eversensor.",
"examples": [
"bc:5e:a1:ff:fe:00:0c:e8"
]
},
"packetNumberGateway": {
"$id": "#/properties/packetNumberGateway",
"type": "integer",
"title": "The packet number from the Gateway",
"description": "A counter that increments with each packet received by the gateway. Range comes from implementation as unsigned int32. Starts at 1, rolls over to 0.",
"minimum": 0,
"maximum": 4294967295,
"examples": [
235
]
},
"packetNumberEversensor": {
"$id": "#/properties/packetNumberEversensor",
"type": "integer",
"title": "The packet number from the eversensor",
"description": "A counter that increments when the sensor node generates a packet. Range comes from u1 implementation (1 byte). Starts at 1, rolls over at 0.",
"minimum": 0,
"maximum": 255,
"examples": [
12
]
},
"readingDate": {
"$id": "#/properties/readingDate",
"type": "string",
"title": "reading timestamp in ISO8601",
"description": "Date and Time in human-readable format.",
"examples": [
"2022-01-12T21:34:31.000Z"
]
},
"schema": {
"$id": "#/properties/schema",
"type": "string",
"title": "The schema URI",
"description": "Reference to the schema definition for this document.",
"const": "https://evr.ac/schemas/platform/eversensor/vibration-electrical/v2/reading"
},
"schemaVersion": {
"$id": "#/properties/schemaVersion",
"type": "string",
"title": "The schema version",
"description": "Major version of the schema for this document.",
"examples": [
"v2"
]
},
"rssiUplink": {
"$id": "#/properties/rssiUplink",
"type": "number",
"title": "RSSI Uplink",
"description": "The RSSI of the sensor -> gateway signal, as measured by the gateway.",
"examples": [
-79
]
},
"rssiDownlink": {
"$id": "#/properties/rssiDownlink",
"type": "number",
"title": "RSSI Downlink",
"description": "The RSSI of the gateway -> sensor signal as measured by the sensor.",
"examples": [
-89
]
},
"vcap": {
"$id": "#/properties/vcap",
"type": "number",
"title": "vcap",
"description": "Electrical potential of the capacitor(s) on the sensor, in volts (V).",
"exclusiveMinimum": 0,
"examples": [
4.125
]
},
"scap": {
"$id": "#/properties/scap",
"type": "number",
"title": "scap",
"description": "Electrical potential of the super capacitor on the sensor, in volts (V).",
"exclusiveMinimum": 0,
"examples": [
4.825
]
},
"unsolicited": {
"$id": "#/properties/unsolicited",
"type": "boolean",
"title": "unsolicited",
"description": "Indicates if the reading was requested by the gateway (false) or was sent by the Eversensor without a wakeup signal being sent (true).",
"examples": [
false
]
},
"timestamp": {
"$id": "#/properties/timestamp",
"type": "integer",
"title": "Readings timestamp ",
"description": "Readings epoch Unix timestamp.",
"examples": [
1642023271
]
},
"humidityMeasurements": {
"$id": "#/properties/humidityMeasurements",
"type": "array",
"title": "Humidity Measurements (%)",
"description": "Readings from the humidity instruments. Values are given in Percentage",
"examples": [
[
{
"sensorIndex": 0,
"value": 35.7
}
]
],
"additionalItems": false,
"items": {
"$id": "#/properties/humidityMeasurements/items/0",
"type": "object",
"title": "Humidity sensors readings (%)",
"description": "Readings from the humidity instruments. The value is given in Percentage. Each instrument is identified by a immutable numeric index.",
"examples": [
{
"sensorIndex": 0,
"value": 35.7
}
],
"required": [
"sensorIndex",
"value"
],
"properties": {
"sensorIndex": {
"$id": "#/properties/humidityMeasurements/items/0/properties/sensorIndex",
"type": "integer",
"title": "Sensor index",
"description": "sequence number assigned to the instrument.",
"examples": [
0
]
},
"value": {
"$id": "#/properties/humidityMeasurements/items/0/properties/value",
"type": "number",
"title": "Reading value",
"description": "The value of the instrument's reading (%).",
"examples": [
35.7
]
}
},
"additionalProperties": false
}
},
"temperatureMeasurements": {
"$id": "#/properties/temperatureMeasurements",
"type": "array",
"title": "Temperature Measurements (K)",
"description": "Readings from the temperature instruments. Values are given in Kelvin.",
"examples": [
[
{
"sensorIndex": 0,
"value": 4037
}
]
],
"additionalItems": false,
"items": {
"$id": "#/properties/temperatureMeasurements/items/0",
"type": "object",
"title": "Temperature sensors readings (K)",
"description": "Readings from the temperature instruments. Values are given in Kelvin. Each instrument is identified by a immutable numeric index.",
"examples": [
{
"sensorIndex": 0,
"value": 4037
}
],
"required": [
"sensorIndex",
"value"
],
"properties": {
"sensorIndex": {
"$id": "#/properties/temperatureMeasurements/items/0/properties/sensorIndex",
"type": "integer",
"title": "Sensor index",
"description": "sequence number assigned to the instrument.",
"examples": [
0
]
},
"value": {
"$id": "#/properties/temperatureMeasurements/items/0/properties/value",
"type": "number",
"title": "Reading value",
"description": "The value of the instrument's reading (K).",
"examples": [
4037
]
}
},
"additionalProperties": false
}
},
"vibrationalMeasurements": {
"$id": "#/properties/vibrationalMeasurements",
"type": "object",
"title": "The vibrationalMeasurements schema",
"description": "",
"required": [],
"properties": {
"velocity": {
"$id": "#/properties/vibrationalMeasurements/properties/velocity",
"type": "object",
"title": "The velocity schema",
"description": "",
"required": [
"configurationMetadata"
],
"properties": {
"maxLevels": {
"$id": "#/properties/vibrationalMeasurements/properties/velocity/properties/maxLevels",
"type": "object",
"title": "The maxLevels schema",
"description": "",
"required": [],
"properties": {
"x": {
"$ref": "#/$defs/xValue"
},
"y": {
"$ref": "#/$defs/yValue"
},
"z": {
"$ref": "#/$defs/zValue"
}
},
"additionalProperties": false
},
"overallLevels": {
"$id": "#/properties/vibrationalMeasurements/properties/velocity/properties/overallLevels",
"type": "object",
"title": "The overallLevels schema",
"description": "",
"required": [],
"properties": {
"x": {
"$ref": "#/$defs/xValue"
},
"y": {
"$ref": "#/$defs/yValue"
},
"z": {
"$ref": "#/$defs/zValue"
}
},
"additionalProperties": false
},
"spectralPeaks": {
"$id": "#/properties/vibrationalMeasurements/properties/velocity/properties/spectralPeaks",
"type": "object",
"title": "The spectralPeaks schema",
"description": "",
"required": [],
"properties": {
"x": {
"$id": "#/properties/vibrationalMeasurements/properties/velocity/properties/spectralPeaks/properties/x",
"type": "array",
"title": "X Axis Peak",
"description": "",
"additionalItems": false,
"items": {
"$ref": "#/$defs/spectralReading"
}
},
"y": {
"$id": "#/properties/vibrationalMeasurements/properties/velocity/properties/spectralPeaks/properties/y",
"type": "array",
"title": "Y Axis Peak",
"description": "",
"additionalItems": false,
"items": {
"$ref": "#/$defs/spectralReading"
}
},
"z": {
"$id": "#/properties/vibrationalMeasurements/properties/velocity/properties/spectralPeaks/properties/z",
"type": "array",
"title": "Z Axis Peak",
"description": "",
"additionalItems": false,
"items": {
"$ref": "#/$defs/spectralReading"
}
}
},
"additionalProperties": false
},
"configurationMetadata": {
"$ref": "#/$defs/configurationMetadata"
}
},
"additionalProperties": false
},
"acceleration": {
"$id": "#/properties/vibrationalMeasurements/properties/acceleration",
"type": "object",
"title": "The acceleration schema",
"description": "",
"required": [
"configurationMetadata"
],
"properties": {
"maxLevels": {
"$id": "#/properties/vibrationalMeasurements/properties/acceleration/properties/maxLevels",
"type": "object",
"title": "The maxLevels schema",
"description": "",
"required": [],
"properties": {
"x": {
"$ref": "#/$defs/xValue"
},
"y": {
"$ref": "#/$defs/yValue"
},
"z": {
"$ref": "#/$defs/zValue"
}
},
"additionalProperties": false
},
"overallLevels": {
"$id": "#/properties/vibrationalMeasurements/properties/acceleration/properties/overallLevels",
"type": "object",
"title": "The overallLevels schema",
"description": "",
"required": [],
"properties": {
"x": {
"$ref": "#/$defs/xValue"
},
"y": {
"$ref": "#/$defs/yValue"
},
"z": {
"$ref": "#/$defs/zValue"
}
},
"additionalProperties": false
},
"spectralPeaks": {
"$id": "#/properties/vibrationalMeasurements/properties/acceleration/properties/spectralPeaks",
"type": "object",
"title": "The spectralPeaks schema",
"description": "",
"required": [],
"properties": {
"x": {
"$ref": "#/$defs/xValue"
},
"y": {
"$ref": "#/$defs/yValue"
},
"z": {
"$ref": "#/$defs/zValue"
}
},
"additionalProperties": false
},
"configurationMetadata": {
"$ref": "#/$defs/configurationMetadata"
}
},
"additionalProperties": false
},
"displacement": {
"$id": "#/properties/vibrationalMeasurements/properties/displacement",
"type": "object",
"title": "The displacement schema",
"description": "",
"required": [
"configurationMetadata"
],
"properties": {
"maxLevels": {
"$id": "#/properties/vibrationalMeasurements/properties/displacement/properties/maxLevels",
"type": "object",
"title": "The maxLevels schema",
"description": "",
"required": [],
"properties": {
"x": {
"$ref": "#/$defs/xValue"
},
"y": {
"$ref": "#/$defs/yValue"
},
"z": {
"$ref": "#/$defs/zValue"
}
},
"additionalProperties": false
},
"overallLevels": {
"$id": "#/properties/vibrationalMeasurements/properties/displacement/properties/overallLevels",
"type": "object",
"title": "The overallLevels schema",
"description": "",
"required": [],
"properties": {
"x": {
"$ref": "#/$defs/xValue"
},
"y": {
"$ref": "#/$defs/yValue"
},
"z": {
"$ref": "#/$defs/zValue"
}
},
"additionalProperties": false
},
"spectralPeaks": {
"$id": "#/properties/vibrationalMeasurements/properties/displacement/properties/spectralPeaks",
"type": "object",
"title": "The spectralPeaks schema",
"description": "",
"required": [],
"properties": {
"x": {
"$ref": "#/$defs/xValue"
},
"y": {
"$ref": "#/$defs/yValue"
},
"z": {
"$ref": "#/$defs/zValue"
}
},
"additionalProperties": false
},
"configurationMetadata": {
"$ref": "#/$defs/configurationMetadata"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"electricalFieldMeasurements": {
"$id": "#/properties/electricalFieldMeasurements",
"type": "object",
"title": "The electricalFieldMeasurements schema",
"description": "",
"required": [
"configurationMetadata"
],
"properties": {
"maxLevel": {
"$id": "#/properties/electricalFieldMeasurements/properties/maxLevel",
"type": "number",
"title": "The maxLevel schema",
"description": "",
"examples": [
7.183387
]
},
"overallLevel": {
"$id": "#/properties/electricalFieldMeasurements/properties/overallLevel",
"type": "number",
"title": "The overallLevel schema",
"description": "",
"examples": [
7.183387
]
},
"spectral_peaks": {
"$id": "#/properties/electricalFieldMeasurements/properties/spectral_peaks",
"type": "array",
"title": "The spectral_peaks schema",
"description": "",
"additionalItems": false,
"items": {
"$ref": "#/$defs/spectralReading"
}
},
"configurationMetadata": {
"$ref": "#/$defs/configurationMetadata"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}