1. {
    2. "bool": {
    3. "should": [
    4. { "term": { "title": "brown" }},
    5. { "term": { "title": "fox" }}
    6. ]
    7. }
    8. }
    1. "bool": {
    2. "must": [
    3. { "term": { "title": "brown" }},
    4. { "term": { "title": "fox" }}
    5. ]
    6. }
    7. }
    1. {
    2. "should": [
    3. { "term": { "title": "fox" }},
    4. { "term": { "title": "quick" }}
    5. ],
    6. "minimum_should_match": 2 <1>
    7. }
    8. }