{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"additionalProperties":true,
	"description":"Version v6",
	"properties":{
		"credentials":{
			"$ref":"/resources/schema/user/v6/UserCredentials.json"
		},
		"first_name":{
			"type":"string"
		},
		"last_name":{
			"type":"string"
		},
		"avatar_url":{
			"type":"string"
		},
		"contacts":{
			"items":{
				"$ref":"/resources/schema/user/v6/ContactEntry.json"
			},
			"type":"array"
		}
	},
	"required":[
		"credentials"
	],
	"title":"RegistrationEntry",
	"type":"object"
}