Informatica · Schema

JobStartResponse

Response returned when a job is successfully started.

Address VerificationB2B GatewayCloud ServicesData GovernanceData IntegrationData ProfilingData QualityEnterprise SoftwareETLIDMCIICSMaster Data ManagementReference Data Management

Properties

Name Type Description
taskId string The ID of the task that was started.
taskType string The type of the task.
runId integer The unique run ID for this job execution. Use this ID to track job status.
View JSON Schema on GitHub

JSON Schema

informatica-jobstartresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobStartResponse",
  "title": "JobStartResponse",
  "type": "object",
  "description": "Response returned when a job is successfully started.",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "The ID of the task that was started.",
      "example": "500123"
    },
    "taskType": {
      "type": "string",
      "description": "The type of the task.",
      "example": "example_value"
    },
    "runId": {
      "type": "integer",
      "format": "int64",
      "description": "The unique run ID for this job execution. Use this ID to track job status.",
      "example": "500123"
    }
  }
}