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