{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LoginForm", "title": "LoginForm", "type": "object", "properties": { "mfaInfoTitle": { "type": "string", "description": "The title for the MFA information demanded from the user.This is the title displayed in the provider site.This field is applicable for MFA form types only.

Endpoints:", "readOnly": true }, "help": { "type": "string", "description": "The help that can be displayed to the customer in the login form.

Endpoints:", "readOnly": true }, "forgetPasswordURL": { "type": "string", "description": "The forget password URL of the provider site.

Endpoints:" }, "formType": { "type": "string", "description": "The type of the forms for which the user information is required.

Endpoints:Applicable Values
", "enum": [ "login", "questionAndAnswer", "token", "image" ] }, "mfaInfoText": { "type": "string", "description": "The text displayed in the provider site while requesting the user's MFA information. This field is applicable for MFA form types only.

Endpoints:", "readOnly": true }, "loginHelp": { "type": "string", "description": "The help that can be displayed to the customer in the login form.

Endpoints:", "readOnly": true }, "mfaTimeout": { "type": "integer", "description": "The amount of time before which the user is expected to provide MFA information. This field is applicable for MFA form types only. This would be an useful information that could be displayed to the users.

Endpoints:", "format": "int64", "readOnly": true }, "id": { "type": "integer", "description": "The identifier of the login form.

Endpoints:", "format": "int64" }, "row": { "type": "array", "description": "This indicates one row in the form. The row will have one label. But it may have single or multiple fields.

Endpoints:", "items": { "$ref": "#/components/schemas/Row" } } } }