{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "SpaceInfo",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v1 - Space/Layer/TransactionTag combination Object",
	"properties" : {
		"space" : {
			"type" : "string",
			"description" : "Space filter for checkForUpdate API.  If not provided, API will not filter on this parameter.",
			"minLength" : 3
		},

		"layer" : {
			"type" : "string",
			"description" : "Layer filter for checkForUpdate API.  If not provided, API will not filter on this parameter",
			"minLength" : 3
		},
		
		"transaction_tag" : {
			"type" : "string",
			"description" : "This parameter is needed to fetch the next updates available AFTER this transaction_tag",
			"minLength" : 8,
			"maxLength" : 255
		}

		
	},

	"required" : 
	[
		"transaction_tag"
	]
}