Hi folks. If I do an OIDC registration, whose clai...
# talk-kratos
f
Hi folks. If I do an OIDC registration, whose claims provides some fields, but not all the required fields in my schema, is the flow object supposed to contain pre-filled values from the provider? i.e. I have in my schema:
Copy code
"properties": {
                "name": {
                    "title": "Name",
                    "type": "string"
                },
(and others, such as email) as well as:
Copy code
"required": [
                "phone"
            ],
my mapper includes
Copy code
[if 'name' in claims then 'name' else null]: claims.name,
and when I register with OIDC, I expect the registration to fail because ‘phone’ is not provided, but I am asking if the name/email is supposed to be prefilled in the flow. Trying to figure out if there’s a bug in my flow handling, a bug in ory’s continuity handling, or just a feature that doesn’t exist.