sampledb
Version:
Sample data in a database style format.
63 lines (53 loc) • 2.33 kB
JSON
{
"products": [
{ "id": 123456, "price": 5 },
{ "id": 123457, "price": 2 },
{ "id": 123458, "price": 1.5 },
{ "id": 123459, "price": 4 }
],
"customers": [
{ "id": 1, "fullname": "Jane Doe" },
{ "id": 2, "fullname": "John Doe" }
],
"potentialCustomers": [
{ "id": 2, "fullname": "Johnathan Doe" },
{ "id": 3, "fullname": "John Q. Public" },
{ "id": 4, "fullname": "John J. Gingleheimer-Schmidt" }
],
"shoplifters": [
{ "id": 4, "fullname": "John J. Gingleheimer-Schmidt" },
{ "id": 5, "fullname": "Sneaky Pete" }
],
"orders": [
{ "id": 901, "customer": 1, "product": 123456, "speed": 1, "rating": 2 },
{ "id": 902, "customer": 1, "product": 123457, "speed": 2, "rating": 7 },
{ "id": 903, "customer": 2, "product": 123456, "speed": 3, "rating": 43 },
{ "id": 904, "customer": 2, "product": 123457, "speed": 4, "rating": 52 },
{ "id": 905, "customer": 1, "product": 123459, "speed": 5, "rating": 93 },
{ "id": 906, "customer": 1, "product": 123459, "speed": 6, "rating": 74 },
{ "id": 907, "customer": 2, "product": 123458, "speed": 7, "rating": 3 },
{ "id": 908, "customer": 2, "product": 123458, "speed": 8, "rating": 80 },
{ "id": 909, "customer": 1, "product": 123459, "speed": 7, "rating": 23 },
{ "id": 910, "customer": 1, "product": 123459, "speed": 8, "rating": 205 },
{ "id": 911, "customer": 1, "product": 123459, "speed": 3, "rating": 4 },
{ "id": 912, "customer": 7, "product": 123457, "speed": 2, "rating": 6 }
],
"students": [
{ "id": "a", "name": "Andrea" },
{ "id": "b", "name": "Becky" },
{ "id": "c", "name": "Colin" }
],
"foods": [
{ "id": 1, "name": "tacos" },
{ "id": 2, "name": "skittles" },
{ "id": 3, "name": "flan" }
],
"scores": [
{"id": 1, "student": "a", "score": 5 },
{"id": 2, "student": "b", "score": 7 },
{"id": 3, "student": "c", "score": 10 },
{"id": 4, "student": "a", "score": 0 },
{"id": 5, "student": "b", "score": 6 },
{"id": 6, "student": "c", "score": 9 }
]
}