Override Taxonomy Type Fields

I have a blueprint I am working on that utilizes the Taxonomy type and am looking to override one of the fields so I can display it in a different manner than the default ‘select’-ize type.

The blueprint resembles similar to below:

header.taxonomy:
  type: taxonomy
  label: Taxonomy
  multiple: true
  validate:
    type: array

header.taxonomy.category:
    type: toggle
    label: Category
    highlight: 1
    options:
        1: YES
        0: NO
    validate:
        type: bool

This usually results in an error however. I have tried tweaking the source to skip the creation of the overridden items, but then I face an issue where the items in the .yaml file are being created as a comma separated string and not a list like it should.

I am also interested in this. Have you solved it somehow?

The problem i have is actualy just showing only one taxonomy type when using type:taxonomy instead of showing all of them.

You would need to use this new replace command in order to properly replace an existing blueprint field.

However, you might need to remove the field first, because that field is for header.taxonomy and you want to explicitly set a specific type of taxonomy.