Instead of:
"filter": {
"term": {
"verdict": "alllowed"
}
}
Write:
"filter": [
{
"term": {
"verdict": "alllowed"
}},{
"term": {
"verdict": "foo"
}}
]