I have the following document structure:
{ \"_id\":\"12345\", \"value\":{ \"T\":0, \"v\":[ { \"name\":\"JW\",
It's not clear exactly what you tried, but this should work to find the above doc by name:
name
db.collection.find({ "value.v.name": "JW" })
Reference