-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdata.json
More file actions
61 lines (60 loc) · 2.15 KB
/
data.json
File metadata and controls
61 lines (60 loc) · 2.15 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"projects": [
{
"name": "FaceHub",
"periods": [
{
"name": "January 2014", "date": "2014-01-31", "amount": 100,
"assignments": [
{ "from": "Alice", "to": "Bob", "amount": 50, "note": "Arrive earlier" },
{ "from": "Alice", "to": "Charlie", "amount": 50 , "note": "Arrive earlier"},
{ "from": "Bob", "to": "Alice", "amount": 60 , "note": "Arrive earlier"},
{ "from": "Bob", "to": "Charlie", "amount": 40 , "note": "Arrive earlier"},
{ "from": "Charlie", "to": "Alice", "amount": 35 , "note": "Arrive earlier"},
{ "from": "Charlie", "to": "Bob", "amount": 65 , "note": "Arrive earlier"}
]
},
{ "name": "February 2014", "date": "2014-02-28", "amount": 100 }
],
"team": [ "Alice", "Bob", "Charlie" ]
},
{
"name": "GitBook",
"periods": [
{ "name": "March 2014", "date": "2014-03-31", "amount": 400 },
{ "name": "April 2014", "date": "2014-04-30", "amount": 400 }
],
"team": [ "Alice", "Charlie", "Daniel" ]
},
{
"name": "Liqueed",
"periods": [
{ "name": "First Month", "date": "2014-08-31", "amount": 100 }
],
"team": [ "Alan", "Fabricio", "Maximo", "Nicolas", "Sebastian", "Angel" ]
},
{
"name": "Game0",
"periods": [
],
"team": [ "Alan", "Fabricio", "Maximo", "Nicolas", "Sebastian", "Angel" ]
}
],
"persons": [
{ "name": "Alice" },
{ "name": "Bob" },
{ "name": "Charlie" },
{ "name": "Daniel" },
{ "name": "Alan" },
{ "name": "Fabricio" },
{ "name": "Maximo" },
{ "name": "Nicolas" },
{ "name": "Sebastian" },
{ "name": "Angel" }
],
"notes": [
{ "text": "Foo" },
{ "text": "Bar" },
{ "text": "Baz" }
]
}