{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"type" : "object",
	"title" : "UrlShortnerResponse",
	"additionalProperties" : false,
	"description" : "Notification Service V3 - UrlShortnerResponse",
	"properties" : {
		"status" : {
			"$ref" : "/resources/schema/services/v2/ServiceStatus.json",
			"description" : "Service/endpoint response status"
		},
		"shortUrl":{
         	"type":"string",
         	"description":"short url"
        },
        "longUrl": {
         	"type":"string",
         	"description":"long url"
        }
	},

	"required" : 
	[
		"status"
	]
}