Talend · Schema

PlanCreate

API ManagementData IntegrationData QualityETLOrchestrationPipelines

Properties

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

JSON Schema

talend-plancreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlanCreate",
  "title": "PlanCreate",
  "type": "object",
  "required": [
    "name",
    "workspaceId"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "workspaceId": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "steps": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string"
          },
          "order": {
            "type": "integer"
          }
        }
      }
    }
  }
}