I have a question about automatic schema update (I...
# community-help
c
I have a question about automatic schema update (I use firebase backfill). When indexing documents with a map-type field (in my case, "ingredients") that contains dynamic keys (like ingredients.id123), Typesense automatically adds these dynamic keys to the schema, here's an example of what I see on the collection settings after adding a new document:
Copy code
...
   {
      "facet": false,
      "index": true,
      "infix": false,
      "locale": "",
      "name": "ingredients.food_bsemte8amo4tc3a5t84zobk0ms09.quantity",
      "optional": true,
      "sort": true,
      "stem": false,
      "store": true,
      "type": "int64"
    },
   ...
I want to prevent this behavior because the keys will constantly change and I only want to index the predefined structure. Is it even possible to prevent this from happening?