{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"type":"object",
	"title":"NotificationContext",
	"additionalProperties":true,
	"description":"Notification Service V2 - Notification Context.  This context is intended for enriching/glorifying notification experience",
	"properties":{
		"badge":{
			"type":"integer",
			"description":"The number as badge on the app icon on device.  Some devices might not be able to understand this."
		},
		"sound":{
			"type":"string",
			"description":"Name of the sound file that device can play upon recieving the notification.  Some devices might noe be able to understand this."
		},
		"ticker":{
			"type":"string",
			"description":"Some devices (e.g. Android and WP8) have a notion of ticker text to display."
		},
		"mobile_push_type":{
			"type":"array",
			"items":{
				"$ref":"/resources/schema/notification/v2/MobilePushType.json",
				"description":"Type of mobile push"
			},
			"description":"List of the mobile push type"
		},
		"image_uri":{
			"type":"string",
			"description":"URI of an image displayed on the notification (e.g. on WP8)"
		},
		"background_image_uri":{
			"type":"string",
			"description":"URI of a background image displayed as background of the push notification (e.g. on WP8)"
		}
		
	}
	
}