Auth0 issued ID Token does not contain data reflecting scope after Okta SSO

I have configured Okta as SAML Identity Provider lastly. After all the flow I get redirected to my app’s login page with an ID Token as a query parameter. Decoding the JWT token I see only these data on the body of the token:

{
“iss”: “https://dev-jle9uoqa.us.auth0.com/”,
“sub”: “samlp|agreed-saml-soo-auth0|panen54030@hempyl.com”,
“aud”: “2Q13FLSkNQ0deB8oJIqTG4CIg0koPZFN”,
“iat”: 1669992840,
“exp”: 1670028840,
“sid”: “XYORv2ZqvHegv8pa9lrTjCGiGs92owIx”
}

No user profile data, no email.

I have provided the redirect_uri: redirect_uri=http://localhost:3001/login&response_type=id_token&scope=openid email

Thies happens just for users that get registered by the SAML flow. If I create the user directly from my app communicating with Auth0 directly I am able to get user data information.

Please help me to solve the problem.