{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NotificationRequest", "title": "NotificationRequest", "properties": { "live": { "description": "Informs about the origin of the notification. The value is **true** when originating from the live environment, **false** for the test environment.", "type": "string" }, "notificationItems": { "description": "A container object for the details included in the notification.", "items": { "$ref": "#/components/schemas/NotificationRequestItemWrapper" }, "type": "array" } }, "type": "object" }