{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"type" : "object",
	"title" : "UninstallationRequest",
	"additionalProperties" : false,
	"description" : "Notification Service V3 - UninstallationRequest",
	"properties" : {
		"deviceToken" : {
			"type" : "string",
			"description" : "Device token that is trying to unregister",
			"minLength" : 10
		}
	},

	"required" : 
	[
		"deviceToken"
	]
}