-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
37 lines (34 loc) · 1.08 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Items
{
"id": 1,
"owner_id": 1,
"title": "Item",
"description": "Description",
"category": "bike/snowboard",
"price": 1,
"picture_path": "/path/to/img.jpg",
"state": "free/rented/expired",
"endDate": "01-02-2015-14-00",
"location": "x:y"
}
{ "id": 45, "owner_id": 1, "title": "Item", "description": "Description", "category": "bike/snowboard" "price": 1, "picture_path": "/path/to/img.jpg", "state": "free/rented/expired", "endDate": "01-02-2015-14-00", "location": "x:y" }
# Users
{
"id": 1,
"firstName": "Steffen",
"lastName": "Christensen",
"email": "[email protected]",
"location": "x:y",
"pwdHash": "1234",
"AuthType": "fb/google/email/"
}
{ "id": 1, "firstName": "Steffen", "lastName": "Christensen", "email": "[email protected]", "location": "x:y", "pwdHash": "1234", "AuthType": "fb/google/email/" }
# Rental
{
"itemId": 1,
"renterId": 1,
"startDate": "01-02-2015-14-00",
"endDate": "01-02-2015-14-00",
"state": "free/rented/expired"
}
{ "itemId": 1, "renterId": 1, "startDate": "01-02-2015-14-00", "endDate": "01-02-2015-14-00", "state": "free/rented/expired" }