BusinessTitleChangeRequest

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
proposedBusinessTitle string The new business title
effectiveDate string The effective date of the change
View JSON Schema on GitHub

JSON Schema

workday-integration-businesstitlechangerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessTitleChangeRequest",
  "title": "BusinessTitleChangeRequest",
  "type": "object",
  "required": [
    "proposedBusinessTitle",
    "effectiveDate"
  ],
  "properties": {
    "proposedBusinessTitle": {
      "type": "string",
      "description": "The new business title"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date",
      "description": "The effective date of the change"
    }
  }
}