{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SessionAuthenticationSignals", "title": "SessionAuthenticationSignals", "type": "object", "description": "Details about authentication signals obtained during the login flow", "additionalProperties": true, "properties": { "methods": { "type": "array", "description": "Contains the authentication methods a user has completed during their session", "items": { "$ref": "#/components/schemas/SessionAuthenticationSignal" } } } }