Show layout id in blueprint

Buenas!

I’m trying to show the layout id in each layout setting in the backend.
Here is my blueprint code:

        fields:
          layout:
            type: layout
            layouts:
              - "1/1"
            fieldsets:
              text:
                label: Text
                type: group
                fieldsets:
                  - heading:
                  - text
            settings:
              fields:
                infoid:
                  label: Info
                  type: info
                  text: "ID: {{ layout.id }}" # <-- here show the layout id

I feel it should show but it doesn’t. Which is why I pop up here. If someone could give me me a hint, I’d appreciate this very much!
Cheers
Tom

That’s not possible, you don’t have access to individual layout items in the blueprint.

Hi @texnixe,

you do mean within the layout blueprint, right?
Because I am able to read all layout ids on a page:

     fields:
      link:
        label: Jump to section
        type: select
        options:
          type: query
          query: page.layout.toLayouts
          text: "{{ item.id }}"
          value: "{{ item.id }}"

This shows the original layout id - which is fine in this case.
Which is why I thought this would be available, as it’s automatically assigned by the system.