Workday · Schema

DataChangeTaskActivity

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSoftware-as-a-Service

Properties

Name Type Description
id string
descriptor string
activityType string
status string
startedOn string
completedOn string
rowsProcessed integer
rowsFailed integer
View JSON Schema on GitHub

JSON Schema

workday-datachangetaskactivity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataChangeTaskActivity",
  "title": "DataChangeTaskActivity",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "activityType": {
      "type": "string",
      "example": "example_value"
    },
    "status": {
      "type": "string",
      "example": "example_value"
    },
    "startedOn": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    },
    "completedOn": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    },
    "rowsProcessed": {
      "type": "integer",
      "example": 10
    },
    "rowsFailed": {
      "type": "integer",
      "example": 10
    }
  }
}