Workday Payroll · JSON Structure

Payroll Input Create One Time Payment Request Structure

CreateOneTimePaymentRequest schema from Workday Payroll Input API

Type: object Properties: 6 Required: 3
CompensationEnterpriseHuman ResourcesPayrollSaaSTax

CreateOneTimePaymentRequest is a JSON Structure definition published by Workday Payroll, describing 6 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

workerId earningCode amount currency reason effectiveDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-payroll/refs/heads/main/json-structure/payroll-input-create-one-time-payment-request-structure.json",
  "name": "CreateOneTimePaymentRequest",
  "description": "CreateOneTimePaymentRequest schema from Workday Payroll Input API",
  "type": "object",
  "properties": {
    "workerId": {
      "type": "string",
      "description": "Worker identifier",
      "example": "w_100542"
    },
    "earningCode": {
      "type": "string",
      "description": "Earning code for the payment",
      "example": "REGULAR"
    },
    "amount": {
      "type": "double",
      "description": "Payment amount",
      "example": 2500.0
    },
    "currency": {
      "type": "string",
      "description": "ISO 4217 currency code",
      "example": "USD"
    },
    "reason": {
      "type": "string",
      "description": "Reason for the payment",
      "example": "Q1 2026 performance bonus"
    },
    "effectiveDate": {
      "type": "date",
      "description": "Effective date",
      "example": "2026-04-30"
    }
  },
  "required": [
    "workerId",
    "earningCode",
    "amount"
  ]
}