| event.authentication
 | 
          Details about authentication obtained during the password reset flow.
         Includes the following properties: | 
    
      | event.authorization
 | 
          An object containing information that describes the authorization granted to the user logging in.
         Includes the following properties: 
          
            rolesArray of strings.
            An array containing the names of the user's assigned roles. | 
    
      | event.client
 | 
          Information about the Client with which the password reset
          transaction was initiated.
         Includes the following properties: 
          
            client_idString.
            The client id of the application the user is logging in to.
            metadataDictionary.
            An object for holding other application properties.
            nameString.
            The name of the application (as defined in the Dashboard). | 
    
      | event.connection
 | 
          Details about the connection used to authenticate the user.
         Includes the following properties: 
          
            idString.
            The connection's unique identifier.
            metadataOptional dictionary.
            Metadata associated with the connection.
            nameString.
            The name of the connection used to authenticate the user (such astwitterorexample-g-suite-domain).
            strategyString.
            The type of connection.
              For social connections,
                event.connection.strategy === event.connection.name. For enterprise connections, the strategy is
              waad(Windows Azure AD),ad(Active Directory/LDAP),auth0(database connections), and so
                on. | 
    
      | event.organization
 (Optional) | 
          Details about the Organization associated with the current
          transaction.
         Includes the following properties: 
          
            display_nameString.
            The friendly name of the Organization.
            idString.
            The Organization identifier.
            metadataDictionary.
            Metadata associated with the Organization.
            nameString.
            The name of the Organization. | 
    
      | event.request
 | Details about the request that initiated the transaction. Includes the following properties: | 
    
      | event.stats
 | Login statistics for the current user. Includes the following properties: 
          
            logins_countNumber.
            The number of times the user has logged in. | 
    
      | event.tenant
 | Details about the tenant associated with the current transaction. Includes the following properties: 
          
            idString.
            The name of the tenant. | 
    
      | event.transaction
 | Details about the current transaction. Includes the following properties: 
          
            localeString.
            The locale to use for this transaction as determined by
              comparing the browser's requested languages to the tenant's
              language settings.
            login_hintOptional string.
            Hint to the Authorization Server about the login identifier the end-user might use when logging in, if necessary.
            stateOptional string.
            An opaque, arbitrary alphanumeric string your app adds to the initial request that Auth0 includes when redirecting back to your
              application.
            ui_localesArray of strings.
            The ui_locales provided in the original authentication
              request. | 
    
      | event.user
 | 
          An object describing the user associated with the current transaction. 
         Includes the following properties: 
          
            app_metadataDictionary.
            Custom fields that store info about a user that influences the
              user's access, such as support plan, security roles, or access
              control groups.
            created_atString.
            Timestamp indicating when the user profile was first
              created.
            emailOptional string.
            (unique) User's email address.
            email_verifiedBoolean.
            Indicates whether the user has verified their email
              address.
            enrolledFactorsOptional array of objects.
              An array of authentication factors that the user has enrolled. An empty array indicates the user has not enrolled any factors. If
              enrolledFactorsis undefined, the system could not fetch the information, and the user may or may not have enrolled any factors. Includes the following properties:
            family_nameOptional string.
            User's family name.
            given_nameOptional string.
            User's given name.
            identitiesArray of objects.
              Contains info retrieved from the identity provider originially used to authenticate the user. If a user has linked their profile to multiple identity providers, this array also contains those identities. The contents of an identity provider object vary by provider.
             Includes the following properties: 
              
                connectionOptional string.
                Name of the Auth0 connection used to authenticate the
                  user.
                isSocialOptional boolean.
                Indicates whether a social connection was used.
                profileDataOptional dictionary.
                User information associated with the connection. If user profiles have been linked,profileDatacontains associated user data for secondary accounts.
                providerOptional string.
                Name of the entity authenticating the user, such as
                  Facebook, Google, SAML, or your own provider.
                user_idOptional string.
                User's unique identifier for this connection or provider.
            last_password_resetOptional string.
            Timestamp indicating the last time the user's password was
              updated. This field does not exist at user creation. This
              property is only available for Database connections.
            nameOptional string.
            User's full name.
            nicknameOptional string.
            User's nickname.
            phone_numberOptional string.
            User's phone number. Only valid for users with SMS
              connections.
            phone_verifiedOptional boolean.
            Indicates whether the user has verified their phone number. Only valid for users with SMS connections.
            pictureOptional string.
            URL pointing to the
              user's profile picture.
            updated_atString.
            Timestamp indicating when the user's profile was last
              updated.
            user_idString.
            (unique) User's unique identifier.
            user_metadataDictionary.
            Custom fields that store user information that does not impact their level of access, such as work address, home address, or user preferences.
            usernameOptional string.
            (unique) User's username. |