PayrollInput

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
id string
descriptor string
worker object
payComponent object
amount number
startDate string
endDate string
View JSON Schema on GitHub

JSON Schema

workday-integration-payrollinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayrollInput",
  "title": "PayrollInput",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "worker": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "payComponent": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "amount": {
      "type": "number"
    },
    "startDate": {
      "type": "string",
      "format": "date"
    },
    "endDate": {
      "type": "string",
      "format": "date"
    }
  }
}