{ "$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-value-schema.json", "title": "AssetPropertyValue", "description": "

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

You must use expressions for all parameters in AssetPropertyValue. 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": { "value": { "allOf": [ { "$ref": "#/components/schemas/AssetPropertyVariant" }, { "description": "The value to send to an asset property." } ] }, "timestamp": { "allOf": [ { "$ref": "#/components/schemas/AssetPropertyTimestamp" }, { "description": "The timestamp associated with the asset property value. The default is the current event time." } ] }, "quality": { "allOf": [ { "$ref": "#/components/schemas/AssetPropertyQuality" }, { "description": "The quality of the asset property value. The value must be 'GOOD', 'BAD', or 'UNCERTAIN'." } ] } } }