{ "$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-schema.json", "title": "PropertyValue", "description": "An object that contains information about a value for a time series property.", "type": "object", "properties": { "timestamp": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "deprecated": true, "description": "The timestamp of a value for a time series property.This field is deprecated and will throw an error in the future. Use time instead." } ] }, "value": { "allOf": [ { "$ref": "#/components/schemas/DataValue" }, { "description": "An object that specifies a value for a time series property." } ] }, "time": { "allOf": [ { "$ref": "#/components/schemas/Time" }, { "description": "

ISO8601 DateTime of a value for a time series property.

The time for when the property value was recorded in ISO 8601 format: YYYY-MM-DDThh:mm:ss[.SSSSSSSSS][Z/\u00b1HH:mm].

Required sub-fields: YYYY-MM-DDThh:mm:ss and [Z/\u00b1HH:mm]

" } ] } }, "required": [ "value" ] }