I am trying to find all documents that have this field, it doesn\'t matter what exact value it contains; I am only interested in the existence of it.
Here is an exam
You're probably looking for the $exists operator:
db.collection.find({ "payload.discount": { $exists: true } })
There's a $exists operator for that:
db.collectionName.find({"payload.discount": {$exists: true}})