Как прочитать дополнительные свойства из магазина моделей EXTJs?

Json Reader для магазина определяется следующим образом:

Ext.define('App.store.MyList', {
    extend : 'Ext.data.Store',
    model : 'App.model.MyList',
    pageSize : 100,
    proxy : {
       type : 'ajax',
         actionMethods : {
                    create : 'POST',
                    read : 'POST',
                    update : 'POST',
                    destroy : 'POST'
        },
        root : 'results',
        url : 'aaa.htm',
        reader : {
                    type : 'json',
                    root : 'results',
                    totalProperty: 'totalCount',
                    extraProperty: 'abcd'
    },
    simpleSortMode : true
     }
});

Как мне прочитать дополнительные свойства вне корня? Я пытался положить один вreader, это не работает.