Talend · Schema

RunProfileCreate

API ManagementData IntegrationData QualityETLOrchestrationPipelines

Properties

Name Type Description
name string
engineId string
description string
parallelExecutions integer Maximum concurrent executions
View JSON Schema on GitHub

JSON Schema

talend-runprofilecreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RunProfileCreate",
  "title": "RunProfileCreate",
  "type": "object",
  "required": [
    "name",
    "engineId"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "engineId": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "parallelExecutions": {
      "type": "integer",
      "description": "Maximum concurrent executions"
    }
  }
}