SUIRateRequest

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
company object
state object
rate number
effectiveDate string
View JSON Schema on GitHub

JSON Schema

workday-integration-suiraterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SUIRateRequest",
  "title": "SUIRateRequest",
  "type": "object",
  "required": [
    "company",
    "state",
    "rate",
    "effectiveDate"
  ],
  "properties": {
    "company": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "state": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "rate": {
      "type": "number"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date"
    }
  }
}