{
    '_id': 'w4442243',
    'name' : 'Brondesbury Road',
    'tags': { 
        'highway': 'secondary',
        'ref' : 'B451',
        'source_ref' : 'OS OpenData StreetView',
    }
}
Querying all secondary roads:

db.poi.find( { 'tags.highway' : 'secondary' } );
Find all roads:

db.poi.find( { 'tags.highway' : { $exists : true } );