Create FULLTEXT index on mutliple labels and different properties

Hi,
I am using neo4j 5.13.0. I would like to create a fulltext index on multiple labels. I have seen an example where you create a fulltext index on multiple labels and the same set of properties. I was wondering if I could create an index on multiple labels and different properties per label. For example I tried something like this but it does not work:

CREATE FULLTEXT INDEX titlesAndDescriptions FOR (m:Movie|b:Book) ON EACH [b.title, m.description]

Can someone provide an example of the correct syntax? Is this even possible?