{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SessionAuthenticationSignal", "title": "SessionAuthenticationSignal", "type": "object", "description": "Authentication signal details", "additionalProperties": true, "properties": { "name": { "type": "string", "description": "One of: \"federated\", \"passkey\", \"pwd\", \"sms\", \"email\", \"mfa\", \"mock\" or a custom method denoted by a URL" }, "timestamp": { "$ref": "#/components/schemas/SessionDate" }, "type": { "type": "string", "description": "A specific MFA factor. Only present when \"name\" is set to \"mfa\"" } } }