{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"type":"object",
	"title":"NotifyRequest",
	"additionalProperties":false,
	"description":"Notification Service V2 - Notify Interface Request",
	"properties":{
		"notifications":{
			"type":"array",
			"items":{
				"$ref":"/resources/schema/notification/v2/Notification.json",
				"description":"Each element of the array should be an instance of Notification"
			},
			"description":"List of payloads that need to be delivered to recipient list"
		},
		"recipients":{
			"type":"array",
			"items":{
				"$ref":"/resources/schema/notification/v2/Recipient.json",
				"description":"Each element of the array should be an instance of Recipient"
			},
			"description":"List of recipients of the notification"
		},
		"reference_data":{
			"type":"array",
			"items":{
				"$ref":"/resources/schema/notification/v2/NotificationReferenceData.json",
				"description":"Each element of the array should be an instance of NotificationReferenceData"
			},
			"description":"List of reference data"
		}
		
	},
	"required":[
		"notifications",
		"recipients"
	]
}