{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"type":"object",
	"title":"RecipientAddress",
	"additionalProperties":false,
	"description":"Notification Service V2 - Notification recipient address",
	"properties":{
		"type":{
			"$ref":"/resources/schema/notification/v2/RecipientAddressType.json",
			"description":"Address Type of the recipient"
		},
		"address":{
			"type":"string",
			"description":"Address of the recipient.  In case of MOBILE_PUSH, the address is userID"
		},
		"notification_id":{
			"type":"string",
			"description":"Reference to the ID of notification to dispatch/send to this address"
		}
		
	},
	"required":[
		"type",
		"address",
		"notification_id"
	]
}