Talend · Schema

TaskExecutionRequest

API ManagementData IntegrationData QualityETLOrchestrationPipelines

Properties

Name Type Description
taskId string Task identifier to execute
environmentId string Target execution environment
logLevel string Log verbosity level
View JSON Schema on GitHub

JSON Schema

talend-taskexecutionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskExecutionRequest",
  "title": "TaskExecutionRequest",
  "type": "object",
  "required": [
    "taskId"
  ],
  "properties": {
    "taskId": {
      "type": "string",
      "description": "Task identifier to execute"
    },
    "environmentId": {
      "type": "string",
      "description": "Target execution environment"
    },
    "logLevel": {
      "type": "string",
      "enum": [
        "INFO",
        "DEBUG",
        "TRACE"
      ],
      "description": "Log verbosity level"
    }
  }
}