File size: 2,255 Bytes
8143f06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "payPeriodMonth": {
      "type": "integer",
      "description": "Pay period month number (חודש)"
    },
    "payPeriodYear": {
      "type": "integer",
      "description": "Pay period year (שנה)"
    },
    "grade": {
      "type": "string",
      "description": "Employee grade or rank (דרגה)"
    },
    "totalPayments": {
      "type": "number",
      "description": "Sum of all gross payments (סה\"כ תשלומים)"
    },
    "totalDeductions": {
      "type": "number",
      "description": "Sum of all deductions (סה\"כ ניכויים)"
    },
    "netToBank": {
      "type": "number",
      "description": "Net amount paid to bank (סכום בבנק)"
    },
    "totalHours": {
      "type": "number",
      "description": "Total worked hours for the period (שעות)"
    },
    "payments": {
      "type": "array",
      "description": "Gross payment line items in the payments table (תשלומים)",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "description": {
            "type": "string",
            "description": "Payment component description (תאור)"
          },
          "amount": {
            "type": "number",
            "description": "Payment amount in NIS (סכום תשלום)"
          },
          "difference": {
            "type": "number",
            "description": "Difference column value if present (הפרש)"
          }
        }
      }
    },
    "deductions": {
      "type": "array",
      "description": "Deduction line items in the deductions table (ניכויים)",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "description": {
            "type": "string",
            "description": "Deduction component description (תאור)"
          },
          "amount": {
            "type": "number",
            "description": "Deduction amount in NIS (סכום ניכוי)"
          },
          "difference": {
            "type": "number",
            "description": "Difference column value if present (הפרש)"
          }
        }
      }
    }
  }
}