PropertyValueHistory

The history of values for a time series property.

3D VisualizationDigital TwinIndustrial IoTIoT

Properties

Name Type Description
entityPropertyReference object
values object
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-property-value-history-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-property-value-history-schema.json",
  "title": "PropertyValueHistory",
  "description": "The history of values for a time series property.",
  "type": "object",
  "properties": {
    "entityPropertyReference": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityPropertyReference"
        },
        {
          "description": "An object that uniquely identifies an entity property."
        }
      ]
    },
    "values": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Values"
        },
        {
          "description": "A list of objects that contain information about the values in the history of a time series property."
        }
      ]
    }
  },
  "required": [
    "entityPropertyReference"
  ]
}