{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"type":"object",
	"title":"NotificationData",
	"additionalProperties":false,
	"description":"Notification Service V2 - Notification Data Object in form of name-value pair",
	"properties":{
		"name":{
			"$ref":"/resources/schema/notification/v2/NotificationContentAttribute.json",
			"description":"Name of the attribute"
		},
		"value":{
			"type":"string",
			"description":"Value of the attribute"
		},
		"value_type":{
			"$ref":"/resources/schema/notification/v2/NotificationContentType.json"
		}
		
	},
	"required":[
		"name",
		"value",
		"value_type"
	]
}