flat-flower-81031
01/20/2023, 3:47 PMmetadata_public
for an identity schema? I thought I had done it correctly, but the Managed UI is showing an extra field now (with no label) for my metadata property. The docs say the metadata isn’t validated, so do you just not include it in the identity schema?flat-flower-81031
01/20/2023, 3:47 PM{
"$id": "<https://exammple.com/ory/identity.schema.json>",
"title": "Example User",
"type": "object",
"properties": {
"traits": {
"type": "object",
"properties": {
"email": {
"type": "string",
"format": "email",
"title": "Email",
"<http://ory.sh/kratos|ory.sh/kratos>": {
"credentials": {
"password": {
"identifier": true
},
"webauthn": {
"identifier": true
},
"totp": {
"account_name": true
}
},
"recovery": {
"via": "email"
},
"verification": {
"via": "email"
}
},
"maxLength": 320
},
"name": {
"type": "object",
"properties": {
"first": {
"type": "string",
"title": "First name",
"maxLength": 256
},
"last": {
"type": "string",
"title": "Last name",
"maxLength": 256
}
}
}
},
"required": [
"email"
],
"additionalProperties": false
},
"metadata_public": {
"type": "object",
"properties": {
"bonfireUserId": {
"type": "string"
}
},
"additionalProperties": false
}
}
}
magnificent-energy-493
"metadata_public": {
"type": "object",
"properties": {
"lang": {
"type": "string",
"title": "Preferred Language"
}
}
}
magnificent-energy-493
"metadata_public": {
"type": "object",
"properties": {
"bonfireUserId": {
"type": "string",
"title": "bonfireUserId"
}
}
}
steep-lamp-91158
steep-lamp-91158
flat-flower-81031
01/20/2023, 5:03 PMsteep-lamp-91158
flat-flower-81031
01/20/2023, 5:18 PM