Workday · Schema

WorkerHistoryEntry

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
effectiveDate string
businessProcess object
View JSON Schema on GitHub

JSON Schema

workday-workerhistoryentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkerHistoryEntry",
  "title": "WorkerHistoryEntry",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "businessProcess": {
      "$ref": "#/components/schemas/ResourceReference"
    }
  }
}