-
Notifications
You must be signed in to change notification settings - Fork 4
/
messagejson.txt
17 lines (16 loc) · 981 Bytes
/
messagejson.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function getJSON() {
return JSON.stringify("students": [
{ "userID": "1", name":"John Yellow" , "Gender":"Male", "School": "Foo", "Region":"Bar" },
{ "userID": "1", name":"Alfred Doe" , "Gender":"Male", "School": "Foo", "Region":"Bar" },
{ "userID": "1", name":"Helen Doe" , "Gender":"Female", "School": "Foo", "Region":"Bar" },
{ "userID": "1", name":"Michael Black" , "Gender":"Male", "School": "Foo", "Region":"Bar" },
{ "userID": "1", name":"Minnie Blue" , "Gender":"Female", "School": "Foo", "Region":"Bar" },
{ "userID": "1", name":"Gemma Doe" , "Gender":"Female", "School": "Foo", "Region":"Bar" },
{ "userID": "1", name":"Robert Green" , "Gender":"Male", "School": "Foo", "Region":"Bar" },
{ "userID": "1", name":"Jake Doe" , "Gender":"Male", "School": "Foo", "Region":"Bar" },
{ "userID": "1", name":"Rachel White" , "Gender":"Female", "School": "Foo", "Region":"Bar" },
{ "userID": "1", name":"Martic Doe" , "Gender":"Male", "School": "Foo", "Region":"Bar" }
]
})
}
{