Skip to content

Instantly share code, notes, and snippets.

@bramus
Created March 9, 2015 08:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bramus/f7330c9414d73e5bc14d to your computer and use it in GitHub Desktop.
Save bramus/f7330c9414d73e5bc14d to your computer and use it in GitHub Desktop.
Todolist
var todos = [
{
"id": 1,
"what": "A very urgent task",
"priority": "high",
"added_on": "2012-12-03 13:56:08",
"links": [
{
"rel": "self",
"href": "\/todos\/1"
}
]
},
{
"id": 2,
"what": "A normal priority task",
"priority": "normal",
"added_on": "2012-12-03 13:56:08",
"links": [
{
"rel": "self",
"href": "\/todos\/2"
}
]
},
{
"id": 3,
"what": "A low priority task",
"priority": "low",
"added_on": "2012-12-03 13:56:08",
"links": [
{
"rel": "self",
"href": "\/todos\/3"
}
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment