Talend · Schema

Plan

An ordered sequence of tasks in Talend Cloud

API ManagementData IntegrationData QualityETLOrchestrationPipelines

Properties

Name Type Description
id string
name string
workspaceId string
description string
steps array
created string
updated string
View JSON Schema on GitHub

JSON Schema

talend-plan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Plan",
  "title": "Plan",
  "type": "object",
  "description": "An ordered sequence of tasks in Talend Cloud",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "workspaceId": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "steps": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string"
          },
          "order": {
            "type": "integer"
          }
        }
      }
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "updated": {
      "type": "string",
      "format": "date-time"
    }
  }
}