{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "ChangesetDetailsRequest",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v1 - Details/Read API for Changeset Request",
	"api_path" : "/v1/changeset/details",
	"properties" : {
		"id" : {
			"type" : "string",
			"description" : "Unique Identifier of a valid Changeset. It is required only if the space_info option is not provided. If present this will take precedence over the space_info parameter.",
			"minLength" : 24,
			"maxLength" : 32
		},
		
		"space_info" : {
			"$ref" : "/resources/schema/delta/v1/SpaceInfo.json",
			"description" : "space,layer and transaction tag filter. It is required only if the id parameter is not provided. If present id will take precedence over the space_info parameter."
		},
		
		"detail_level" : {
			"$ref" : "/resources/schema/delta/v1/DetailLevel.json",
			"description" : "Level of details for this Changeset.  Default level is SUMMARY. If the detail level is FULL then changeset file information also returned"
		}
	}
}