<@U04UQ68083H> What are the available options for ...
# ory-copilot
g
@chilly-king-10285 What are the available options for the kratos identity schema "ory.sh/kratos" -> "verification" -> "via"?
c
A message from kapa.ai
The available option for the
<http://ory.sh/kratos|ory.sh/kratos>
->
verification
->
via
in the Kratos identity schema is
"email"
. This specifies that the field is verifiable by sending an email with a verification code or link. Here is an example of how it can be used in the schema:
Copy code
json {    "<http://ory.sh/kratos|ory.sh/kratos>": {    "verification": {    "via": "email"    }    }   }
This configuration is used to enable email verification for user identities in Ory Kratos. For more details, you can refer to the [Ory documentation](https://www.ory.sh/docs/kratos/manage-identities/customize-identity-schema).
g
@chilly-king-10285 Are there other available options?
c
A message from kapa.ai
Based on the provided extracts, there is no mention of other options for the
<http://ory.sh/kratos|ory.sh/kratos>
->
verification
->
via
field in the Kratos identity schema. The only specified option is
"email"
, which enables verification via an email with a verification code or link. If there are other options available, they are not mentioned in the provided extracts. For the most accurate and up-to-date information, you should refer to the official [Ory Kratos documentation](https://www.ory.sh/docs/kratos/manage-identities/customize-identity-schema).
m
What options are you looking for @green-oil-88994?
g
@magnificent-energy-493 I look for a manual verification: 1. User registers 2. Admin verifies the user manually
m
I see. How does the admin verify the user? You can update the identity manually through the admin api and set verified for example. (And disable self-service verification) There are other ways too, but I think this is straightforward
g
Ok, Thanks! I will do it that way.
m
Cool let me know if you get stuck.