curl --request GET \
--url https://sandbox.nmbr.co/services/payroll/earning_types \
--header 'Authorization: Bearer <token>'import requests
url = "https://sandbox.nmbr.co/services/payroll/earning_types"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://sandbox.nmbr.co/services/payroll/earning_types', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.nmbr.co/services/payroll/earning_types",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sandbox.nmbr.co/services/payroll/earning_types"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox.nmbr.co/services/payroll/earning_types")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.nmbr.co/services/payroll/earning_types")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"object": "list",
"data": [
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "bonus_discretionary",
"label": "Bonus (Discretionary)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPP is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPIP is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/bonus_discretionary"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "bonus_non_discretionary",
"label": "Bonus (Non-Discretionary)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPP is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPIP is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/bonus_non_discretionary"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "bonus_non_taxable",
"label": "Bonus (Non-Taxable)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": []
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/bonus_non_taxable"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "commission",
"label": "Commission (Non-Periodic)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. When a TD1X has been completed, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses from the TD1X.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. When a TP-1015.3-V has been completed, Income Tax is calculated on Commission (Non-Periodic) following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. When a TD1X has been completed, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses from the TD1X.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Commission (Non-Periodic) is subject to standard CPP calculations.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Commission (Non-Periodic) is subject to standard CPP calculations.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPP is calculated on Commission (Non-Periodic) using the bonus method.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Commission (Non-Periodic) is subject to standard EI calculations.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Commission (Non-Periodic) is subject to standard EI calculations.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPIP is calculated on Commission (Non-Periodic) using the bonus method.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
},
{
"name": "42",
"help_text": "Employment Commissions"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
},
{
"name": "M",
"help_text": "Commissions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/commission"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "commission_periodic",
"label": "Commission (Periodic)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Federal Income Tax. When a TD1X has been completed, Income Tax is calculated on Commission (Periodic) using estimated income and expenses from the TD1X.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. When a TP-1015.3-V has been completed, Income Tax is calculated on Commission (Periodic) following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax. When a TD1X has been completed, Income Tax is calculated on Commission (Periodic) using estimated income and expenses from the TD1X.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
},
{
"name": "42",
"help_text": "Employment Commissions"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
},
{
"name": "M",
"help_text": "Commissions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/commission_periodic"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "commission_self_employed",
"label": "Commission (Self-employed)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": []
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": []
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": []
},
{
"type": "wcb",
"label": "WCB",
"definitions": []
},
{
"type": "eht",
"label": "EPT",
"definitions": []
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": [
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "O-RM",
"help_text": "Self-Employed Commissions"
}
]
]
},
{
"form": "t4a",
"form_label": "T4A",
"mapping": [
[
{
"name": "20",
"help_text": "Self-Employed Commissions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/commission_self_employed"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "death_benefit",
"label": "Death Benefit",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Federal Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax. When a TP-1015.3-V has been completed, Income Tax is calculated on Death Benefit following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": []
},
{
"type": "eht",
"label": "EPT",
"definitions": []
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": [
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "O-RK",
"help_text": "Death Benefit"
}
]
]
}
]
},
"links": {
"self": "/earning_types/death_benefit"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "gift_cash",
"label": "Gift (Cash)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Federal Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax. When a TP-1015.3-V has been completed, Income Tax is calculated on Gift (Cash) following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Gift (Cash)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
},
{
"name": "40",
"help_text": "Other Taxable Allowances and Benefits"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
},
{
"name": "L",
"help_text": "Other Benefits"
}
]
]
}
]
},
"links": {
"self": "/earning_types/gift_cash"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "gratuity",
"label": "Gratuity",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Federal Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Gratuity using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPP is calculated on Gratuity using the bonus method.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPIP is calculated on Gratuity using the bonus method.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
},
{
"name": "T",
"help_text": "Tips Allocated by Employer"
}
]
]
}
]
},
"links": {
"self": "/earning_types/gratuity"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "in_lieu_wages",
"label": "In Lieu Wages (Dismissal Pay)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated using Revenue Quebec's lump sum tax rates directly on the In Lieu Wages (Dismissal Pay) amount. Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": "CPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "EI is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "EI is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "O-RJ",
"help_text": "Retiring Allowance"
}
]
]
}
]
},
"links": {
"self": "/earning_types/in_lieu_wages"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "income_replacement_indemnity_non_taxable",
"label": "Income Replacement Indemnity (Non-Taxable)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": []
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": []
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": []
},
{
"type": "wcb",
"label": "WCB",
"definitions": []
},
{
"type": "eht",
"label": "EPT",
"definitions": []
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": []
},
"links": {
"self": "/earning_types/income_replacement_indemnity_non_taxable"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "income_replacement_indemnity_taxable",
"label": "Income Replacement Indemnity (Taxable)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Federal Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax. When a TP-1015.3-V has been completed, Income Tax is calculated on Income Replacement Indemnity (Taxable) following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Income Replacement Indemnity (Taxable)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/income_replacement_indemnity_taxable"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "invoice_payment",
"label": "Invoice Payment",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": []
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": []
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": []
},
{
"type": "wcb",
"label": "WCB",
"definitions": []
},
{
"type": "eht",
"label": "EPT",
"definitions": []
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": [
{
"form": "t4a",
"form_label": "T4A",
"mapping": [
[
{
"name": "48",
"help_text": "Fees for services"
}
]
]
}
]
},
"links": {
"self": "/earning_types/invoice_payment"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "invoice_sales_tax",
"label": "Invoice sales tax",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": []
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": []
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": []
},
{
"type": "wcb",
"label": "WCB",
"definitions": []
},
{
"type": "eht",
"label": "EPT",
"definitions": []
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": []
},
"links": {
"self": "/earning_types/invoice_sales_tax"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "leave_bereavement",
"label": "Leave (Bereavement)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Federal Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax. When a TP-1015.3-V has been completed, Income Tax is calculated on Leave (Bereavement) following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Leave (Bereavement)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Leave (Bereavement)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/leave_bereavement"
}
}
],
"links": {
"first": "/earning_types?features=ca&page=1",
"last": "/earning_types?features=ca&page=4",
"prev": null,
"next": "/earning_types?features=ca&page=2"
},
"meta": {
"current_page": 1,
"last_page": 4,
"per_page": 15,
"total": 48,
"has_more": true
}
}List earning types
curl --request GET \
--url https://sandbox.nmbr.co/services/payroll/earning_types \
--header 'Authorization: Bearer <token>'import requests
url = "https://sandbox.nmbr.co/services/payroll/earning_types"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://sandbox.nmbr.co/services/payroll/earning_types', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.nmbr.co/services/payroll/earning_types",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sandbox.nmbr.co/services/payroll/earning_types"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox.nmbr.co/services/payroll/earning_types")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.nmbr.co/services/payroll/earning_types")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"object": "list",
"data": [
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "bonus_discretionary",
"label": "Bonus (Discretionary)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPP is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPIP is calculated on Bonus (Discretionary) using the bonus method.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Discretionary) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/bonus_discretionary"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "bonus_non_discretionary",
"label": "Bonus (Non-Discretionary)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPP is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPIP is calculated on Bonus (Non-Discretionary) using the bonus method.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Discretionary) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Discretionary)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/bonus_non_discretionary"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "bonus_non_taxable",
"label": "Bonus (Non-Taxable)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": []
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Bonus (Non-Taxable) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Bonus (Non-Taxable)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/bonus_non_taxable"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "commission",
"label": "Commission (Non-Periodic)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. When a TD1X has been completed, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses from the TD1X.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. When a TP-1015.3-V has been completed, Income Tax is calculated on Commission (Non-Periodic) following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Commission (Non-Periodic) using the bonus method. When a TD1X has been completed, Income Tax is calculated on Commission (Non-Periodic) using estimated income and expenses from the TD1X.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Commission (Non-Periodic) is subject to standard CPP calculations.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Commission (Non-Periodic) is subject to standard CPP calculations.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPP is calculated on Commission (Non-Periodic) using the bonus method.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Commission (Non-Periodic) is subject to standard EI calculations.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "EI is calculated on Commission (Non-Periodic) using the bonus method. For commission-based employees, Commission (Non-Periodic) is subject to standard EI calculations.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPIP is calculated on Commission (Non-Periodic) using the bonus method.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Non-Periodic) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Non-Periodic)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
},
{
"name": "42",
"help_text": "Employment Commissions"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
},
{
"name": "M",
"help_text": "Commissions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/commission"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "commission_periodic",
"label": "Commission (Periodic)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Federal Income Tax. When a TD1X has been completed, Income Tax is calculated on Commission (Periodic) using estimated income and expenses from the TD1X.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. When a TP-1015.3-V has been completed, Income Tax is calculated on Commission (Periodic) following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to Income Tax. For commission-based employees, Income Tax is calculated on Commission (Periodic) using estimated income and expenses.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax. When a TD1X has been completed, Income Tax is calculated on Commission (Periodic) using estimated income and expenses from the TD1X.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Commission (Periodic) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Commission (Periodic)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
},
{
"name": "42",
"help_text": "Employment Commissions"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
},
{
"name": "M",
"help_text": "Commissions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/commission_periodic"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "commission_self_employed",
"label": "Commission (Self-employed)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": []
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": []
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": []
},
{
"type": "wcb",
"label": "WCB",
"definitions": []
},
{
"type": "eht",
"label": "EPT",
"definitions": []
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": [
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "O-RM",
"help_text": "Self-Employed Commissions"
}
]
]
},
{
"form": "t4a",
"form_label": "T4A",
"mapping": [
[
{
"name": "20",
"help_text": "Self-Employed Commissions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/commission_self_employed"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "death_benefit",
"label": "Death Benefit",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Federal Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax. When a TP-1015.3-V has been completed, Income Tax is calculated on Death Benefit following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Death Benefit is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": []
},
{
"type": "eht",
"label": "EPT",
"definitions": []
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": [
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "O-RK",
"help_text": "Death Benefit"
}
]
]
}
]
},
"links": {
"self": "/earning_types/death_benefit"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "gift_cash",
"label": "Gift (Cash)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Federal Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax. When a TP-1015.3-V has been completed, Income Tax is calculated on Gift (Cash) following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gift (Cash) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Gift (Cash)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
},
{
"name": "40",
"help_text": "Other Taxable Allowances and Benefits"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
},
{
"name": "L",
"help_text": "Other Benefits"
}
]
]
}
]
},
"links": {
"self": "/earning_types/gift_cash"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "gratuity",
"label": "Gratuity",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Federal Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on Gratuity using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPP is calculated on Gratuity using the bonus method.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "QPIP is calculated on Gratuity using the bonus method.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Gratuity is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
},
{
"name": "T",
"help_text": "Tips Allocated by Employer"
}
]
]
}
]
},
"links": {
"self": "/earning_types/gratuity"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "in_lieu_wages",
"label": "In Lieu Wages (Dismissal Pay)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated using Revenue Quebec's lump sum tax rates directly on the In Lieu Wages (Dismissal Pay) amount. Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Tax is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "CPP is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": "CPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "EI is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "EI is calculated on In Lieu Wages (Dismissal Pay) using the bonus method.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "In Lieu Wages (Dismissal Pay) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on In Lieu Wages (Dismissal Pay)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "O-RJ",
"help_text": "Retiring Allowance"
}
]
]
}
]
},
"links": {
"self": "/earning_types/in_lieu_wages"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "income_replacement_indemnity_non_taxable",
"label": "Income Replacement Indemnity (Non-Taxable)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": []
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": []
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": []
},
{
"type": "wcb",
"label": "WCB",
"definitions": []
},
{
"type": "eht",
"label": "EPT",
"definitions": []
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": []
},
"links": {
"self": "/earning_types/income_replacement_indemnity_non_taxable"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "income_replacement_indemnity_taxable",
"label": "Income Replacement Indemnity (Taxable)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Federal Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax. When a TP-1015.3-V has been completed, Income Tax is calculated on Income Replacement Indemnity (Taxable) following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Income Replacement Indemnity (Taxable) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Income Replacement Indemnity (Taxable)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/income_replacement_indemnity_taxable"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "invoice_payment",
"label": "Invoice Payment",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": []
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": []
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": []
},
{
"type": "wcb",
"label": "WCB",
"definitions": []
},
{
"type": "eht",
"label": "EPT",
"definitions": []
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": [
{
"form": "t4a",
"form_label": "T4A",
"mapping": [
[
{
"name": "48",
"help_text": "Fees for services"
}
]
]
}
]
},
"links": {
"self": "/earning_types/invoice_payment"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "invoice_sales_tax",
"label": "Invoice sales tax",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": []
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": []
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": []
},
{
"type": "wcb",
"label": "WCB",
"definitions": []
},
{
"type": "eht",
"label": "EPT",
"definitions": []
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": []
}
],
"form_mappings": []
},
"links": {
"self": "/earning_types/invoice_sales_tax"
}
},
{
"id": "<id>",
"object": "earning_type",
"data": {
"type": "leave_bereavement",
"label": "Leave (Bereavement)",
"supported_payroll_types": {
"regular": true,
"historical": true,
"off_cycle": true
},
"features": [
{
"type": "income_tax",
"label": "Income Tax",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Federal Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax. When a TP-1015.3-V has been completed, Income Tax is calculated on Leave (Bereavement) following Revenue Quebec's cumulative-averaging method, using estimated income and expenses from the TP-1015.3-V.",
"program_label": null
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to Income Tax.",
"program_label": null
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Federal Income Tax rates apply, plus the default outside-Canada surtax.",
"program_label": null
}
]
},
{
"type": "pensionable",
"label": "Pensionable (CPP/QPP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to CPP.",
"program_label": "CPP"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to QPP.",
"program_label": "QPP"
}
]
},
{
"type": "insurable",
"label": "Insurable (EI/QPIP)",
"definitions": [
{
"jurisdiction": "ca_federal",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_oc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to EI.",
"program_label": "EI"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to QPIP.",
"program_label": "QPIP"
}
]
},
{
"type": "wcb",
"label": "WCB",
"definitions": [
{
"jurisdiction": "ca_ab",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WorkSafeBC.",
"program_label": "WorkSafeBC"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nb",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WorkSafeNB.",
"program_label": "WorkSafeNB"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WorkplaceNL.",
"program_label": "WorkplaceNL"
},
{
"jurisdiction": "ca_ns",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_nt",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_nu",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WSCC.",
"program_label": "WSCC"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WSIB.",
"program_label": "WSIB"
},
{
"jurisdiction": "ca_pe",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to CNESST.",
"program_label": "CNESST"
},
{
"jurisdiction": "ca_sk",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
},
{
"jurisdiction": "ca_yt",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to WCB.",
"program_label": "WCB"
}
]
},
{
"type": "eht",
"label": "EPT",
"definitions": [
{
"jurisdiction": "ca_bc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_mb",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to HE Levy.",
"program_label": "HE Levy"
},
{
"jurisdiction": "ca_nl",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to HAPSET.",
"program_label": "HAPSET"
},
{
"jurisdiction": "ca_on",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to EHT.",
"program_label": "EHT"
},
{
"jurisdiction": "ca_qc",
"effects": [
"withholding"
],
"help_text": "Leave (Bereavement) is subject to HSF.",
"program_label": "HSF"
}
]
},
{
"type": "vacationable",
"label": "Vacationable",
"definitions": [
{
"jurisdiction": "ca_pe",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Leave (Bereavement)",
"program_label": null
},
{
"jurisdiction": "ca_qc",
"effects": [
"accrues_vacation_pay"
],
"help_text": "Vacation pay accrues on Leave (Bereavement)",
"program_label": null
}
]
}
],
"form_mappings": [
{
"form": "t4",
"form_label": "T4",
"mapping": [
[
{
"name": "14",
"help_text": "Employment Income"
}
]
]
},
{
"form": "rl1",
"form_label": "RL-1",
"mapping": [
[
{
"name": "A",
"help_text": "Employment Income Before Source Deductions"
}
]
]
}
]
},
"links": {
"self": "/earning_types/leave_bereavement"
}
}
],
"links": {
"first": "/earning_types?features=ca&page=1",
"last": "/earning_types?features=ca&page=4",
"prev": null,
"next": "/earning_types?features=ca&page=2"
},
"meta": {
"current_page": 1,
"last_page": 4,
"per_page": 15,
"total": 48,
"has_more": true
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Country code that adds each type's payroll calculations to the response, as the features and form_mappings fields. Currently only ca is supported. See Line item type features.
CA, GB Comma-separated list of type identifiers to return.
Case-insensitive substring match against the human-readable label, in any supported locale.
Response
OK
The type of the object in Nmbr ("list").
Hide child attributes
Hide child attributes
The unique identifier of the object in Nmbr.
The type of the object in Nmbr ("earning_type").
Hide child attributes
Hide child attributes
The string identifier for this earning type.
The human-readable display name for this earning type.
Hide child attributes
Hide child attributes
The payroll calculation this entry describes.
eht, income_tax, insurable, pensionable, vacationable, wcb Human-readable name for the payroll calculation.
How this type affects the calculation, broken down by jurisdiction. Jurisdictions where it does not apply are omitted.
Hide child attributes
Hide child attributes
The jurisdiction this applies to (e.g. ca_federal, ca_on, ca_qc).
How this type affects the payroll calculation in this jurisdiction.
accrues_vacation_pay, reduces_base, tax_credit, withholding Plain-language explanation of how this type affects the calculation in this jurisdiction.
The program that applies in this jurisdiction, for calculations that use different programs by jurisdiction (e.g. CPP federally, QPP in Quebec; EI federally, QPIP in Quebec).
Hide child attributes
Hide child attributes
The form code (e.g. t4).
Human-readable form name.

