PropertyLatestValue

The latest value of the property.

3D VisualizationDigital TwinIndustrial IoTIoT

Properties

Name Type Description
propertyReference object
propertyValue object
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-property-latest-value-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-latest-value-schema.json",
  "title": "PropertyLatestValue",
  "description": "The latest value of the property.",
  "type": "object",
  "properties": {
    "propertyReference": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityPropertyReference"
        },
        {
          "description": "An object that specifies information about a property."
        }
      ]
    },
    "propertyValue": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DataValue"
        },
        {
          "description": "The value of the property."
        }
      ]
    }
  },
  "required": [
    "propertyReference"
  ]
}