Don't like ads? PRO users don't see any ads ;-)
Guest

users.json

By: a guest on Jun 14th, 2012  |  syntax: JavaScript  |  size: 0.58 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. {
  2.  users: [{
  3.         id: 1,
  4.         name: 'test user',
  5.         inProgress: [{
  6.                 id: 1,
  7.                 title: 'task title 1',
  8.                 priority: 'CRITICAL',
  9.                 status: 'IN_PROGESS',
  10.                 details: 'task detail 1'
  11.         },{
  12.                 id: 4,
  13.                 title: 'task title 4',
  14.                 priority: 'MINOR',
  15.                 status: 'IN_PROGRESS',
  16.                 details: 'task detail 4'
  17.         }],
  18.         completed: [{
  19.                 id: 2,
  20.                 title: 'task title 2',
  21.                 priority: 'MINOR',
  22.                 status: 'COMPLETED',
  23.                 details: 'task detail 2'
  24.         }],
  25.         blocked: [{
  26.                 id: 3,
  27.                 title: 'task title 3',
  28.                 priority: 'MAJOR',
  29.                 status: 'BLOCKED',
  30.                 details: 'task detail 3'
  31.         }]
  32.  }]
  33. }