{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/auth0/main/json-schema/auth0-session-schema.json", "title": "Auth0 Session", "description": "Authentication signal details", "type": "object", "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\"" } } }