Pinwheel · Schema

CompanyPaystubObjResponse

PayrollDirect DepositIncome VerificationEmploymentTax FormsFintechOpen FinanceBill SwitchingFinancial Data

Properties

Name Type Description
created_at string ISO 8601 timestamp of created time.
employee_external_id string Employee ID as reported by their employer.
pay_date string The date when the check amount is paid to the employee.
pay_period_start string The date when the pay period begins. Some platforms, like unemployment portals, do not have fixed pay periods.
pay_period_end string The date when the pay period ends. Some platforms, like unemployment portals, do not have fixed pay periods.
currency object Three-letter ISO 4217 currency code, uppercase. For example, the code for US dollars is USD.
gross_pay_amount integer The total earnings before any deductions are made, in cents.
net_pay_amount integer The total earnings after all taxes and deductions are removed, in cents.
check_amount integer The amount paid to the employee in this payout, in cents.
gross_pay_ytd integer The cumulative year to date total earnings before any taxes or deductions are removed, in cents.
net_pay_ytd integer The cumulative year to date total earnings after all taxes and deductions are removed, in cents.
total_taxes integer The total taxes for this pay period, in cents.
total_deductions integer The total deductions for this pay period, in cents.
total_reimbursements integer The total reimbursements for this pay period, in cents.
employer_name string The name of the employer that issued the paystub.
View JSON Schema on GitHub

JSON Schema

companypaystubobjresponse.json Raw ↑
{
  "properties": {
    "created_at": {
      "type": "string",
      "format": "date-time",
      "title": "created_at",
      "description": "ISO 8601 timestamp of created time."
    },
    "employee_external_id": {
      "type": "string",
      "title": "employee_external_id",
      "description": "Employee ID as reported by their employer."
    },
    "pay_date": {
      "type": "string",
      "format": "date",
      "title": "pay_date",
      "description": "The date when the check amount is paid to the employee."
    },
    "pay_period_start": {
      "type": "string",
      "format": "date",
      "title": "pay_period_start",
      "description": "The date when the pay period begins. Some platforms, like unemployment portals, do not have fixed pay periods."
    },
    "pay_period_end": {
      "type": "string",
      "format": "date",
      "title": "pay_period_end",
      "description": "The date when the pay period ends. Some platforms, like unemployment portals, do not have fixed pay periods."
    },
    "currency": {
      "allOf": [
        {
          "type": "string",
          "enum": [
            "AED",
            "AFN",
            "ALL",
            "AMD",
            "ANG",
            "AOA",
            "ARS",
            "AUD",
            "AWG",
            "AZN",
            "BAM",
            "BBD",
            "BDT",
            "BGN",
            "BHD",
            "BIF",
            "BMD",
            "BND",
            "BOB",
            "BOV",
            "BRL",
            "BSD",
            "BTN",
            "BWP",
            "BYR",
            "BZD",
            "CAD",
            "CDF",
            "CHE",
            "CHF",
            "CHW",
            "CLF",
            "CLP",
            "CNY",
            "COP",
            "COU",
            "CRC",
            "CUC",
            "CUP",
            "CVE",
            "CZK",
            "DJF",
            "DKK",
            "DOP",
            "DZD",
            "EGP",
            "ERN",
            "ETB",
            "EUR",
            "FJD",
            "FKP",
            "GBP",
            "GEL",
            "GHS",
            "GIP",
            "GMD",
            "GNF",
            "GTQ",
            "GYD",
            "HKD",
            "HNL",
            "HRK",
            "HTG",
            "HUF",
            "IDR",
            "ILS",
            "INR",
            "IQD",
            "IRR",
            "ISK",
            "JMD",
            "JOD",
            "JPY",
            "KES",
            "KGS",
            "KHR",
            "KMF",
            "KPW",
            "KRW",
            "KWD",
            "KYD",
            "KZT",
            "LAK",
            "LBP",
            "LKR",
            "LRD",
            "LSL",
            "LTL",
            "LVL",
            "LYD",
            "MAD",
            "MDL",
            "MGA",
            "MKD",
            "MMK",
            "MNT",
            "MOP",
            "MRO",
            "MUR",
            "MVR",
            "MWK",
            "MXN",
            "MXV",
            "MYR",
            "MZN",
            "NAD",
            "NGN",
            "NIO",
            "NOK",
            "NPR",
            "NZD",
            "OMR",
            "PAB",
            "PEN",
            "PGK",
            "PHP",
            "PKR",
            "PLN",
            "PYG",
            "QAR",
            "RON",
            "RSD",
            "RUB",
            "RWF",
            "SAR",
            "SBD",
            "SCR",
            "SDG",
            "SEK",
            "SGD",
            "SHP",
            "SLL",
            "SOS",
            "SRD",
            "SSP",
            "STD",
            "SYP",
            "SZL",
            "THB",
            "TJS",
            "TMT",
            "TND",
            "TOP",
            "TRY",
            "TTD",
            "TWD",
            "TZS",
            "UAH",
            "UGX",
            "USD",
            "USN",
            "USS",
            "UYI",
            "UYU",
            "UZS",
            "VEF",
            "VND",
            "VUV",
            "WST",
            "XAF",
            "XAG",
            "XAU",
            "XBA",
            "XBB",
            "XBC",
            "XBD",
            "XCD",
            "XDR",
            "XOF",
            "XPD",
            "XPF",
            "XPT",
            "XTS",
            "XXX",
            "YER",
            "ZAR",
            "ZMW"
          ]
        }
      ],
      "description": "Three-letter ISO 4217 currency code, uppercase. For example, the code for US dollars is USD."
    },
    "gross_pay_amount": {
      "type": "integer",
      "title": "gross_pay_amount",
      "description": "The total earnings before any deductions are made, in cents."
    },
    "net_pay_amount": {
      "type": "integer",
      "title": "net_pay_amount",
      "description": "The total earnings after all taxes and deductions are removed, in cents."
    },
    "check_amount": {
      "type": "integer",
      "title": "check_amount",
      "description": "The amount paid to the employee in this payout, in cents."
    },
    "gross_pay_ytd": {
      "type": "integer",
      "title": "gross_pay_ytd",
      "description": "The cumulative year to date total earnings before any taxes or deductions are removed, in cents."
    },
    "net_pay_ytd": {
      "type": "integer",
      "title": "net_pay_ytd",
      "description": "The cumulative year to date total earnings after all taxes and deductions are removed, in cents."
    },
    "total_taxes": {
      "type": "integer",
      "title": "total_taxes",
      "description": "The total taxes for this pay period, in cents."
    },
    "total_deductions": {
      "type": "integer",
      "title": "total_deductions",
      "description": "The total deductions for this pay period, in cents."
    },
    "total_reimbursements": {
      "type": "integer",
      "title": "total_reimbursements",
      "description": "The total reimbursements for this pay period, in cents."
    },
    "employer_name": {
      "type": "string",
      "title": "employer_name",
      "description": "The name of the employer that issued the paystub."
    }
  },
  "type": "object",
  "required": [
    "created_at",
    "employee_external_id",
    "pay_date",
    "currency",
    "gross_pay_amount",
    "net_pay_amount",
    "check_amount",
    "total_taxes",
    "total_deductions",
    "total_reimbursements"
  ],
  "title": "CompanyPaystubObjResponse",
  "x-tags": [
    "Schemas"
  ],
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.pinwheelapi.com/CompanyPaystubObjResponse.json"
}