{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "ChangesetDeleteRequest",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v1 - Delete API for Changeset Request",
	"api_path" : "/v1/changeset/delete",
	"properties" : {
		"id" : {
			"type" : "string",
			"description" : "Unique Identifier of a valid Changeset.",
			"minLength" : 24,
			"maxLength" : 32
		}
	},

	"required" : 
	[
		"id"
	]
}