¿Cómo filtrar (clave, valor) con ng-repeat en AngularJs?

Estoy tratando de hacer algo como:

<div ng-controller="TestCtrl">
    <div ng-repeat="(k,v) in items | filter:hasSecurityId">
        {{k}} {{v.pos}}
    </div>
</div>

Parte AngularJs:

function TestCtrl($scope) 
{
    $scope.items = {
                     'A2F0C7':{'secId':'12345', 'pos':'a20'},
                     'C8B3D1':{'pos':'b10'}
                   };

    $scope.hasSecurityId = function(k,v)
    {
       return v.hasOwnProperty('secId');
    }
}

Pero de alguna manera, me está mostrando todos los artículos. ¿Cómo puedo filtrar en (clave, valor)?