{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-structure/iot-sitewise-property-notification-structure.json", "name": "PropertyNotification", "description": "Contains asset property value notification information. When the notification state is enabled, IoT SiteWise publishes property value updates to a unique MQTT topic. For more information, see Interacting with other services in the IoT SiteWise User Guide.", "type": "object", "properties": { "topic": { "allOf": [ { "$ref": "#/components/schemas/PropertyNotificationTopic" }, { "description": "The MQTT topic to which IoT SiteWise publishes property value update notifications." } ] }, "state": { "allOf": [ { "$ref": "#/components/schemas/PropertyNotificationState" }, { "description": "The current notification state." } ] } }, "required": [ "topic", "state" ] }