OneTimePaymentRequest

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
amount number
currency object
payComponent object
effectiveDate string
reason string
View JSON Schema on GitHub

JSON Schema

workday-integration-onetimepaymentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OneTimePaymentRequest",
  "title": "OneTimePaymentRequest",
  "type": "object",
  "required": [
    "amount",
    "payComponent",
    "effectiveDate"
  ],
  "properties": {
    "amount": {
      "type": "number"
    },
    "currency": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "payComponent": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date"
    },
    "reason": {
      "type": "string"
    }
  }
}