forked from morbidick/loc3
-
Notifications
You must be signed in to change notification settings - Fork 3
Item Structure
morbidick edited this page Nov 29, 2014
·
5 revisions
{
"_id": 0123456789,
"created_at": "2014/11/01 17:52:30 +0200",
"updated_at": "2014/11/01 17:54:20 +0200",
"type": "item",
"title": "title",
"comment": "text",
"team_id": "the team at the congress center who the item belongs to",
"vendor_id": "the vendor the item belongs to",
"childs": [],
"parent_id": 0,
"attachments": {"files"},
"past_locations": [
{
"type": "world",
"comment": "optional",
"timestamp": "2014/11/01 17:54:20 +0200",
"entry_by": "user_id"
},
{
"type": "halle_h",
"timestamp": "2014/11/01 17:54:20 +0200",
"x": 5,
"y": 10,
"entry_by": "user_id"
},
{
"type": "congress_center",
"timestamp": "2014/11/01 17:54:20 +0200",
"team": "NOC",
"person": "the person that took it",
"entry_by": "user_id"
},
{
"type": "item",
"timestamp": "2014/11/01 17:54:20 +0200",
"item_id": 0123456789,
"entry_by": "user_id"
}],
"current_location": {
"type": "transport",
"transport_id": 1234,
"timestamp": "2014/11/01 17:54:20 +0200",
"entry_by": "user_id"
}
}
{
"_id": 0123456789,
"created_at": "2014/11/01 17:52:30 +0200",
"updated_at": "2014/11/01 17:54:20 +0200",
"arrival_time": "2014/11/01 17:54:20 +0200",
"direction": "incoming or outgoing",
"type": "transport",
"title": "title",
"comment": "text",
"team_id": [],
"vendor_id": "the vendor the item belongs to",
"attachments": {"files"},
"contains_assembly_stuff": true
}
{
"_id": 0123456789,
"created_at": "2014/11/01 17:52:30 +0200",
"updated_at": "2014/11/01 17:54:20 +0200",
"type": "vendor",
"title": "title",
"comment": "text",
"transports": [],
"attachments": {"files"},
"primary_phone_number": 1233,
"address": {}
}
{
"_id": 0123456789,
"created_at": "2014/11/01 17:52:30 +0200",
"updated_at": "2014/11/01 17:54:20 +0200",
"type": "team",
"title": "title",
"comment": "text",
"attachments": {"files"},
"primary_phone_number": 1233,
"address": {}
}