Hi all, I have a `phone` trait and want to track `...
# talk-kratos
f
Hi all, I have a
phone
trait and want to track
phone_is_verified
. In my identity schema, should I define this as a trait or
metadata_public
?
p
You can make it a
metadata_public
field since you don't want the user to update this field in the settings page.
metadata
feilds are for admin api
f
Thanks! Does that mean that in this example in the ā€œCustomize identity schemasā€ docs,
accepted_tos
is an editable field?
p
yes everything under
traits
will be available under the
profile
method for settings
f
Thank you