{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "ReleaseBundleCreateRequest",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v1 - Create API for ReleaseBundle Request",
	"api_path" : "/v1/releasebundle/create",
	"properties" : {
		"transaction_tag" : {
			"type" : "string",
			"description" : "An identifier to distinguish one release Bundle from another one.  This is a publisher's supplied attribute and publisher has the responsibility to ensure the uniqueness of this parameter",
			"minLength" : 8,
			"maxLength" : 255
		},
		
		"program" : {
			"type" : "string",
			"description" : "An identifier for the program this release bundle belongs to.  This is a publisher's supplied attribute and publisher has the responsibility to ensure the uniqueness of this parameter",
			"minLength" : 8,
			"maxLength" : 255
		},
		
		"description" : {
			"type" : "string",
			"description" : "A free flowing text describing the release bundle.",
			"maxLength" : 1024
		},
		
		"metadata" : {
			"type" : "string",
			"description" : "metadata text associated with release bundle.",
			"maxLength" : 4096
		}
	},

	"required" : 
	[
		"transaction_tag"
	]
}