I am trying to update a collection schema on Types...
# community-help
r
I am trying to update a collection schema on Typesense cloud and keep getting a 408 error with an empty body. Any ideas what might be happening? Here is my update schema:
Copy code
{
  "fields": [
    {
      "name": "geoloc",
      "drop": true
    },
    {
      "name": "_geoloc",
      "type": "geopoint[]",
      "optional": true
    }
  ]
}