-
Notifications
You must be signed in to change notification settings - Fork 0
/
codetally.json
41 lines (41 loc) · 1.13 KB
/
codetally.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
38
39
40
41
{
"currency":"usd",
"charges": [
{
"event":"commit",
"action":"added",
"chargetype":"author",
"chargeref":"someone@github.org",
"description":"Author specific charge for someone when he or she adds something in a commit.",
"calculationtype":"normal",
"chargeamount":"45.23"
},
{
"event":"commit",
"action":"modified",
"chargetype":"author",
"chargeref":"someone@github.org",
"description":"Author specific charge for someone when he or she modifies something in a commit.",
"calculationtype":"normal",
"chargeamount":"8.26"
},
{
"event":"commit",
"action":"removed",
"chargetype":"author",
"chargeref":"someone@github.org",
"description":"Author specific charge for someone when he or she removes something in a commit.",
"calculationtype":"normal",
"chargeamount":"17.96"
},
{
"event":"commit",
"action":"any",
"chargetype":"tax",
"chargeref":"null",
"description":"Government Sales Tax.",
"calculationtype":"percent",
"chargeamount":"6.25"
}
]
}