{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"type":"object",
	"title":"Recipient",
	"additionalProperties":false,
	"description":"Notification Service V2 - Notification recipient",
	"properties":{
		"scheme":{
			"$ref":"/resources/schema/notification/v2/DistributionScheme.json",
			"description":"Notification distribution scheme.  Based on the scheme, notfication service will send the notification to recipient list"
		},
		"notification_data_ref_id":{
			"type":"string",
			"description":"Reference to JSON object containing the data for notification parsing"
		},
		"send_to":{
			"type":"array",
			"items":{
				"$ref":"/resources/schema/notification/v2/RecipientAddress.json",
				"description":"Each element has to be instance of RecipientAddress"
			},
			"description":"All the addresses one recipient may have."
		}
		
	},
	"required":[
		"scheme",
		"send_to"
	]
}