DataChangeTaskRequest

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
targetTable object
operation string
fileContainer object
View JSON Schema on GitHub

JSON Schema

workday-integration-datachangetaskrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataChangeTaskRequest",
  "title": "DataChangeTaskRequest",
  "type": "object",
  "required": [
    "targetTable",
    "operation"
  ],
  "properties": {
    "targetTable": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "operation": {
      "type": "string",
      "enum": [
        "TruncateAndInsert",
        "Insert",
        "Update",
        "Upsert",
        "Delete"
      ]
    },
    "fileContainer": {
      "$ref": "#/components/schemas/ResourceReference"
    }
  }
}