{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "SpaceLayerInfo",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v1 - Space/Layer/TransactionTag combination Object",
	"properties" : {
		"space" : {
			"type" : "string",
			"description" : "Space id to be updated.",
			"minLength" : 3
		},

		"layer" : {
			"type" : "string",
			"description" : "Layer id to be update",
			"minLength" : 3
		},
		
		"transaction_tag" : {
			"type" : "string",
			"description" : "transaction_tag of the update",
			"minLength" : 8,
			"maxLength" : 255
		}

		
	},

	"required" : 
	[
		"transaction_tag"		
	]
}