Hello! Does anyone know what could cause the `meta...
# talk-kratos
l
Hello! Does anyone know what could cause the
meta
property in the response from fetching the “Registration with username/email and password” input fields to be empty? I’m getting a response like so:
Copy code
{
    "id": "2e98b50e-01a0-4623-bd73-833294a5daec",
    "type": "browser",
    "expires_at": "2023-09-06T14:54:35.184710421Z",
    "issued_at": "2023-09-06T13:54:35.184710421Z",
    "request_url": "<http://127.0.0.1:4433/self-service/registration/browser>",
    "ui": {
        "action": "<http://127.0.0.1:3000/.ory/kratos/public/self-service/registration?flow=2e98b50e-01a0-4623-bd73-833294a5daec>",
        "method": "POST",
        "nodes": [
            ...
            {
                "type": "input",
                "group": "password",
                "attributes": {
                    "name": "traits.emails",
                    "type": "text",
                    "disabled": false,
                    "node_type": "input"
                },
                "messages": [],
                "meta": {} <----------THIS IS EMPTY!
            },
            ...
And I would expect something like:
Copy code
{
    "id": "2e98b50e-01a0-4623-bd73-833294a5daec",
    ....
             ....
            {
                "type": "input",
                "group": "password",
                "attributes": {
                    "name": "traits.emails",
                    "type": "text",
                    "disabled": false,
                    "node_type": "input"
                },
                "messages": [],
                "meta": { <----------- THIS NOT BEING EMPTY!
                    "label": {
                    "id": 1070002,
                    "text": "E-Mail",
                   "type": "info"
                 }
            },
We are working on setting up a self-service UI with self-hosted Kratos, I can of course provide more details if this is too vague
I realized that the identity schema JSON was missing a “title” property, so problem solved