-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathw2.cue
56 lines (42 loc) · 848 Bytes
/
w2.cue
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
package taxes
#Employer: {
ein?: #EIN
name: string
address?: #address
}
#W2: {
// box c Employer
employer?: #Employer
// box e Employee
employee?: {
#Person
address?: #address
}
// box 1 Wages
wages: #amount
// box 3 Social security wages
ssWages: number | *wages
// box 5 Medicare wages
medicareWages: number | *wages
// box 2 Federal income tax withheld
incomeTax: #amount
// box 4 Social security tax withheld
ssTax: #amount
// box 6 Medicare tax withheld
medicareTax: #amount
// box 14 Other
otherInfo: [...#otherInfo]
#otherInfo: [string, #amount]
// box 15-20 State
stateInfo: [...#stateInfo]
#stateInfo: {
// box 15 State
state: #states
// box 15 Employer's state ID number
id: string
// box 16 State wages
wages: #amount
// box 17 State income tax
incomeTax: #amount
}
}