Workday · Schema

DataChangeTaskCreateRequest

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
name string The name for the data change task.
targetDataset object
operation object
fileContainer object
View JSON Schema on GitHub

JSON Schema

workday-datachangetaskcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataChangeTaskCreateRequest",
  "title": "DataChangeTaskCreateRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name for the data change task.",
      "example": "Example Title"
    },
    "targetDataset": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "operation": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "The operation type identifier (FullReplace or Append)."
        }
      },
      "example": "example_value"
    },
    "fileContainer": {
      "$ref": "#/components/schemas/ResourceReference"
    }
  },
  "required": [
    "name",
    "targetDataset",
    "operation"
  ]
}