{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "API Path: /v1/changeset/geturls\nVersion v1, the request structure to check updates status",
	"properties" : {
		"change_set_token" : {
			"type" : "string",
			"description" : "the token assgined to this upload process.  This token should be valid at the time of request, and the request should be placed within the expiry time provided with the token"
		},

		"num_of_parts" : {
			"type" : "integer",
			"description" : "Number of file-partition(s) uploaded by dataPipeline/client for the said changeSet.  This number should be non-zero positive integer."
		}
	},

	"required" : 
	[
		"change_set_token",
		"num_of_parts"
	],

	"title" : "GetUploadPathsRequest",
	"type" : "object"
}