full-book-15949
08/17/2023, 8:28 PM"properties": {
"name": {
"title": "Name",
"type": "string"
},
(and others, such as email)
as well as:
"required": [
"phone"
],
my mapper includes
[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.