Skip to content

Instantly share code, notes, and snippets.

@Tabrizian
Last active May 27, 2017 06:15
Show Gist options
  • Save Tabrizian/91268417947b869cad4ffb51186bc22b to your computer and use it in GitHub Desktop.
Save Tabrizian/91268417947b869cad4ffb51186bc22b to your computer and use it in GitHub Desktop.
Initial Data for mongodb
[
{
"_id": 1,
"name": "sue",
"age": 19,
"type": 1,
"status": "P",
"favorites": { "artist": "Picasso", "food": "pizza" },
"finished": [ 17, 3 ],
"badges": [ "blue", "black" ],
"points": [
{ "points": 85, "bonus": 20 },
{ "points": 85, "bonus": 10 }
]
},
{
"_id": 2,
"name": "bob",
"age": 42,
"type": 1,
"status": "A",
"favorites": { "artist": "Miro", "food": "meringue" },
"finished": [ 11, 25 ],
"badges": [ "green" ],
"points": [
{ "points": 85, "bonus": 20 },
{ "points": 64, "bonus": 12 }
]
},
{
"_id": 3,
"name": "ahn",
"age": 22,
"type": 2,
"status": "A",
"favorites": { "artist": "Cassatt", "food": "cake" },
"finished": [ 6 ],
"badges": [ "blue", "red" ],
"points": [
{ "points": 81, "bonus": 8 },
{ "points": 55, "bonus": 20 }
]
},
{
"_id": 4,
"name": "xi",
"age": 34,
"type": 2,
"status": "D",
"favorites": { "artist": "Chagall", "food": "chocolate" },
"finished": [ 5, 11 ],
"badges": [ "red", "black" ],
"points": [
{ "points": 53, "bonus": 15 },
{ "points": 51, "bonus": 15 }
]
},
{
"_id": 5,
"name": "xyz",
"age": 23,
"type": 2,
"status": "D",
"favorites": { "artist": "Noguchi", "food": "nougat" },
"finished": [ 14, 6 ],
"badges": [ "orange" ],
"points": [
{ "points": 71, "bonus": 20 }
]
},
{
"_id": 6,
"name": "abc",
"age": 43,
"type": 1,
"status": "A",
"favorites": { "food": "pizza", "artist": "Picasso" },
"finished": [ 18, 12 ],
"badges": [ "black", "blue" ],
"points": [
{ "points": 78, "bonus": 8 },
{ "points": 57, "bonus": 7 }
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment