Contains the response to a successful GetLoginProfile request.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetLoginProfileResponse", "title": "GetLoginProfileResponse", "type": "object", "required": [ "LoginProfile" ], "example": { "LoginProfile": { "CreateDate": "2012-09-21 23:03:39+00:00", "UserName": "Anika" } }, "properties": { "LoginProfile": { "allOf": [ { "$ref": "#/components/schemas/LoginProfile" }, { "description": "A structure containing the user name and the profile creation date for the user." } ] } }, "description": "Contains the response to a successful <a>GetLoginProfile</a> request. " }