Amazon IoT SiteWise · JSON Structure

Iot Sitewise Aggregated Value Structure

Contains aggregated asset property values (for example, average, minimum, and maximum).

Type: object Properties: 3 Required: 2
Asset ManagementIndustrial IoTIoTTime Series Data

AggregatedValue is a JSON Structure definition published by Amazon IoT SiteWise, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

timestamp quality value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-structure/iot-sitewise-aggregated-value-structure.json",
  "name": "AggregatedValue",
  "description": "Contains aggregated asset property values (for example, average, minimum, and maximum).",
  "type": "object",
  "properties": {
    "timestamp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date the aggregating computations occurred, in Unix epoch time."
        }
      ]
    },
    "quality": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Quality"
        },
        {
          "description": "The quality of the aggregated data."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Aggregates"
        },
        {
          "description": "The value of the aggregates."
        }
      ]
    }
  },
  "required": [
    "timestamp",
    "value"
  ]
}