{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-events/refs/heads/main/json-schema/iot-events-asset-property-timestamp-schema.json", "title": "AssetPropertyTimestamp", "description": "

A structure that contains timestamp information. For more information, see TimeInNanos in the AWS IoT SiteWise API Reference.

You must use expressions for all parameters in AssetPropertyTimestamp. The expressions accept literals, operators, functions, references, and substitution templates.

Examples

For more information, see Expressions in the AWS IoT Events Developer Guide.

", "type": "object", "properties": { "timeInSeconds": { "allOf": [ { "$ref": "#/components/schemas/AssetPropertyTimeInSeconds" }, { "description": "The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199." } ] }, "offsetInNanos": { "allOf": [ { "$ref": "#/components/schemas/AssetPropertyOffsetInNanos" }, { "description": "The nanosecond offset converted from timeInSeconds. The valid range is between 0-999999999." } ] } }, "required": [ "timeInSeconds" ] }