(lldb) po self.document.properties
{
"_id" = 8387530937fe51a59365e882fe2b8ff9;
"_rev" = "2-d7f14c03e7226c400e1f56034f1d91c1";
authorizationNumber = "";
charges = (
{
charge = 55;
code = 99211;
},
{
charge = 150;
code = 90836;
}
);
correctedClaim = 0;
dateOfService = 1380524400;
dateSubmitted = "1391384939.515375";
insured = "";
insurerId = edc7d4fee17ca1792d5ecf9254e88b0a;
insurerName = "Kaiser Foundation Health Plan of the Northwest";
patientId = 05acac91de863a80ffb189a3cf7b6612;
patientName = "AISHA T. HOFSTADTER";
policyNumber = 12345678M;
sessionId = 8387530937fe51a59365e882fe12e73b;
status = unpaid;
type = claim;
}
(lldb) po self.charges
nil
@property (nonatomic, strong) NSArray * charges;
(lldb) po self.charges
nil
```I have a property in my model:```@property (nonatomic, strong) NSArray * charges;