{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReportAvailableNotificationRequest",
"title": "ReportAvailableNotificationRequest",
"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/ReportAvailableNotificationRequestItemWrapper"
},
"type": "array"
}
},
"type": "object"
}