Configure simplesearch

Here a blog collection page set by taxonomy in frontmatter of blog.md:

content:
    items:
       '@taxonomy':
         category: [blog, ja]

Following plugin documentation and taxononomy documentation, simplesearch settings have been added like:

simplesearch:
    filters:
        - @taxonomy: {category: [ja]}

… tried also many other variations, but still can’t do it ! ♪ Any ideas? ☆ Please help

I removed your previous post to avoid duplication.

The simplesearch.filters property does not work like taxonomy collections definitions. It can filter on @self, then also search in the taxonomy names (- @taxonomy: [tag], - @taxonomy: [tag, author]).

Thank you (no problem for removing previous post).
I can filter with simplesearch.yaml: that works perfectly
But here ja is standing for japanese pages so I need to filter at a page level: filter ja on japanese page collection, fr for french, en for english…
How can I manage that with @self?
Sorry, I don’t get how to use @self and then @taxonomy from the docs…

I tried in blog.md like docs:

content:
    items:
       - '@self.children'
       - '@taxonomy':
          category: [blog, ja]

but it gives me all a collections of all pages, not only the [blog, ja] pages.

this also worked:

content:
    items:
       '@taxonomy.category': [blog, ja]
---