Apideck · Schema

PayrollTotals

The overview of the payroll totals.

IntegrationsUnified API

Properties

Name Type Description
company_debit number The total company debit for the payroll.
tax_debit number The total tax debit for the payroll.
check_amount number The total check amount for the payroll.
net_pay number The net pay amount for the payroll.
gross_pay number The gross pay amount for the payroll.
employer_taxes number The total amount of employer paid taxes for the payroll.
employee_taxes number The total amount of employee paid taxes for the payroll.
employer_benefit_contributions number The total amount of company contributed benefits for the payroll.
employee_benefit_deductions number The total amount of employee deducted benefits for the payroll.
View JSON Schema on GitHub

JSON Schema

apideck-payrolltotals-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayrollTotals",
  "title": "PayrollTotals",
  "type": "object",
  "description": "The overview of the payroll totals.",
  "x-apideck-schema-id": "PayrollTotals",
  "properties": {
    "company_debit": {
      "type": "number",
      "description": "The total company debit for the payroll.",
      "example": 27992.49,
      "nullable": true
    },
    "tax_debit": {
      "type": "number",
      "description": "The total tax debit for the payroll.",
      "example": 8655.32,
      "nullable": true
    },
    "check_amount": {
      "type": "number",
      "description": "The total check amount for the payroll.",
      "example": 27966.23,
      "nullable": true
    },
    "net_pay": {
      "type": "number",
      "description": "The net pay amount for the payroll.",
      "example": 19337.17,
      "nullable": true
    },
    "gross_pay": {
      "type": "number",
      "description": "The gross pay amount for the payroll.",
      "example": 27966.23,
      "nullable": true
    },
    "employer_taxes": {
      "type": "number",
      "description": "The total amount of employer paid taxes for the payroll.",
      "example": 2038.93,
      "nullable": true
    },
    "employee_taxes": {
      "type": "number",
      "description": "The total amount of employee paid taxes for the payroll.",
      "example": 6616.39,
      "nullable": true
    },
    "employer_benefit_contributions": {
      "type": "number",
      "description": "The total amount of company contributed benefits for the payroll.",
      "example": 0,
      "nullable": true
    },
    "employee_benefit_deductions": {
      "type": "number",
      "description": "The total amount of employee deducted benefits for the payroll.",
      "example": 0,
      "nullable": true
    }
  }
}