{ "$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-values-schema.json", "title": "Values", "description": "Values schema", "type": "array", "items": { "type": "object", "required": [ "value" ], "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].
[YYYY]: year
[MM]: month
[DD]: day
[hh]: hour
[mm]: minute
[ss]: seconds
[.SSSSSSSSS]: additional precision, where precedence is maintained. For example: [.573123] is equal to 573123000 nanoseconds.
Z: default timezone UTC
\u00b1 HH:mm: time zone offset in Hours and Minutes.
Required sub-fields: YYYY-MM-DDThh:mm:ss and [Z/\u00b1HH:mm]
" } ] } }, "description": "An object that contains information about a value for a time series property." } }