{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "ApiContext",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v2",
	"properties" : {
		"api_key" : {
			"type" : "string",
			"minLength" : 24
		},

		"api_signature" : {
			"type" : "string",
			"minLength" : 24
		}
	},

	"required" : 
	[
		"api_key",
		"api_signature"
	]
}