Amazon IoT SiteWise · JSON Structure

Iot Sitewise Aggregated Values Structure

AggregatedValues schema

Type: array Properties: 0
Asset ManagementIndustrial IoTIoTTime Series Data

AggregatedValues is a JSON Structure definition published by Amazon IoT SiteWise. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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-values-structure.json",
  "name": "AggregatedValues",
  "description": "AggregatedValues schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "timestamp",
      "value"
    ],
    "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."
          }
        ]
      }
    },
    "description": "Contains aggregated asset property values (for example, average, minimum, and maximum)."
  }
}