class OpenSearch::DSL::Search::Filters::Term

A filter which returns documents matching the specified terms

@example

search do
  query do
    filtered do
      filter do
        term color: 'red'
      end
    end
  end
end

@note The specified terms are *not analyzed* (lowercased, stemmed, etc),

so they must match the indexed terms.