{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-property-notification-schema.json", "title": "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" ] }