{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "v1 of user account credentials",
	"properties" : {
		"type" : {
			"type" : "string",
			"description" : "type of credetnails e.g. EMAIL, FACEBOOK etc."
		},

		"key_hash" : {
			"type" : "string",
			"description" : "MD5 hash of the credentials key.  It will be masked for privacy concerns"
		}
	},

	"required" : 
	[
		"type",
		"key_hash"
	],

	"title" : "Credentials",
	"type" : "object"
}