Can you have columns inside a list in a blueprint?

Hi, I’m trying to have columns inside a list in a blueprint but it doesn’t seem to be working. The fields display in my admin fine, but when I enter data and save the data doesn’t save into the YAML and the admin refreshes and says ‘page saved’ but strips these fields:

links:
  name: links
  type: list
  style: vertical
  label: Links
  fields:
    columns1:
      type: columns
      fields:
        column1:
          type: column
          fields:
            text:
              type: text
              label: Link Button Text
              style: vertical
            link:
              type: text 
              label: "Link URL (format must be 'http://' for external links and '/link' for internal links"
              style: vertical
        column2:
          type: column
          fields:
            blank:
              type: toggle
              label: "Open this link in a new window?"
              style: vertical
              highlight: no
              default: no
              options:
                0: No
                1: Yes

Is my syntax wrong or is this not possible?

It’s currently not possible as the column are just visual types, and inside a list they are not going to work, along with the section field.

@flaviocopes In case of long list item, column make sense inside a list. Do you think it’s worth open “enhancement” issue ?

Sure create an issue, we’ll see if it’s possible.

ok, here https://github.com/getgrav/grav-plugin-admin/issues/1006