{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"type" : "object",
	"title" : "UrlShortnerRequest",
	"additionalProperties" : false,
	"description" : "UrlShortnerRequest",
	"properties" : {
		"context" : {
			"$ref" : "/resources/schema/services/v2/Context.json",
			"description" : "Service Request Context"
		},
		"shortUrl" : {
			"type" : "string",
			"description" : "pass a short url - which you want expanded to long url. If you pass shortUrl, do not pass longURL"
		},
		"longUrl" : {
			"type" : "string",
		    "description" : "pass a long url - which you want shortened. If you pass longUrl, do not pass shortUrl"
		}
		
	}
}