Talend · Schema

ConnectionCreate

API ManagementData IntegrationData QualityETLOrchestrationPipelines

Properties

Name Type Description
name string
workspaceId string
type string
configuration object
View JSON Schema on GitHub

JSON Schema

talend-connectioncreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionCreate",
  "title": "ConnectionCreate",
  "type": "object",
  "required": [
    "name",
    "workspaceId",
    "type"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "workspaceId": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "configuration": {
      "type": "object",
      "additionalProperties": true
    }
  }
}