Created
January 14, 2011 00:35
-
-
Save tauren/778929 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* REST endpoint: /projects | |
*/ | |
var projects = [ | |
{ | |
"id": 2, | |
"name": "Project 1", | |
"members": [ | |
{"id": 1, "name": "Tom", "phone": "555-5555"}, | |
{"id": 2, "name": "Sue", "phone": "555-5555"} | |
] | |
}, | |
{ | |
"id": 2, | |
"name": "Project 2", | |
"members": [ | |
{"id": 1, "name": "Tom", "phone": "555-5555"} | |
] | |
} | |
] | |
/* | |
* REST endpoint: /user/:id | |
*/ | |
var user = { | |
"id": 1, | |
"name": "Tom", | |
"phone": "555-5555", | |
"email": "[email protected]", | |
"address": { | |
"street": "555 SW Main", | |
"city": "Somewhere" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment