Add collection level attributes beyond name?

Description

Collections have an attribute called “name”. Can I add additional attributes like “category”? How? I’m referring to attributes of the collection, not properties of the documents in the collection.

Server Setup Information

  • Weaviate Server Version: 1.24.2
  • Deployment Method: docker
  • Multi Node? Number of Running Nodes: 1
  • Client Language and Version: python 3
  • Multitenancy?: no

hi @moruga123 !

You cannot add metadata for your collection other than the name itself, as you mentioned, and the description.

Can you elaborate more on why this would be an interesting feature for you?

One possible solution to “filter” your collections (assuming this is what you want to do), would be using the description property to add some unique filter tags, and filter those out after getting the collections list.

Let me know if this helps.

Thanks!