Hi Justin,
When do you check the model in the debugger? After data is loaded (which is done asynchronously) or before?
Please add an event handler to your model like this:
oModel.attachRequestCompleted(function(oEvent) {
var oDebugModel = oModel;
debugger;
});
Can you see the data when you stop in the debugger there?
Best regards,
Sebastian