Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / guides / data / examples / associations_validations / data / users / 1 / index.html
1 {
2     success: true,
3     users: [
4         {
5             id: 1,
6             name: 'Ed',
7             age: 25,
8             gender: 'male',
9             posts: [
10                 {
11                     id   : 12,
12                     title: 'All about data in Ext JS 4',
13                     body : 'One areas that has seen the most improvement...',
14                     comments: [
15                         {
16                             id: 123,
17                             name: 'S Jobs',
18                             message: 'One more thing'
19                         }
20                     ]
21                 }
22             ]
23         }
24     ]
25 }