Workday Payroll · Schema

PayPeriod

PayPeriod schema from Workday Payroll API

CompensationEnterpriseHuman ResourcesPayrollSaaSTax

Properties

Name Type Description
startDate string Start date of the pay period
endDate string End date of the pay period
View JSON Schema on GitHub

JSON Schema

payroll-pay-period-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-payroll/refs/heads/main/json-schema/payroll-pay-period-schema.json",
  "title": "PayPeriod",
  "description": "PayPeriod schema from Workday Payroll API",
  "type": "object",
  "properties": {
    "startDate": {
      "type": "string",
      "format": "date",
      "description": "Start date of the pay period",
      "example": "2026-04-30"
    },
    "endDate": {
      "type": "string",
      "format": "date",
      "description": "End date of the pay period",
      "example": "2026-04-30"
    }
  }
}