Using embedded_schema like in the example below always just ends up with a null _id in the database. I would expect it to populate the object id just like it does when using a regular schema.
@primary_key {:id, :binary_id, autogenerate: true}
embedded_schema do
field :name, :string
end