[Schema (collection definitions) | Weaviate - Vector Database](https://Schema Properties starter guide)
In the V4 tab in the following code:
wvc.config.Property(
name="question",
data_type=wvc.config.DataType.TEXT,
vectorize_property_name=True, # Skip the property name ("question") when vectorizing
tokenization=wvc.config.Tokenization.LOWERCASE # Use "lowecase" tokenization
),
I think the # Skip the property name is negated by the True value.