{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"additionalProperties": true,
	"description": "Version v6",
	"properties": {
		"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"
		},
		"session_attributes": {
			"type": "object"
		},
		"scope": {
			"type": "array",
			"items": {
				"type": "string"
			}
		}
	},
	"required": [
		"application_id",
		"credentials",
		"device_info"
	],
	"title": "LoginRequest",
	"type": "object"
}