I couldn't find it mentioned explicitly in the documentation, but there is no autogenerated unique index on _id field for time series collections.
From here,
Time series collections behave like normal collections. You can insert
and query your data as you normally would. MongoDB treats time series
collections as writable non-materialized views backed by an internal
collection. When you insert data, the internal collection
automatically organizes time series data into an optimized storage
format. When you create a time series collection, MongoDB
automatically creates an internal clustered index on the time field.
The primary key index of a Time Series collection is an automatically
created clustered index on a server generated unique _id value for a
group of documents with a unique metaField for a time span. This index
and value can be seen in the corresponding system.buckets.foo
collection. The _id of the document cannot currently be indexed and
cannot be the primary key index for a Time Series collection like a
regular collection.
I couldn't find it mentioned explicitly in the documentation, but there is no autogenerated unique index on _id field for time series collections. From here,
Example:
Now, if you query
system.buckets.weather
collection,This comment says this,