Talend · Schema

Connection

A data source or destination connection configuration

API ManagementData IntegrationData QualityETLOrchestrationPipelines

Properties

Name Type Description
id string
name string
workspaceId string
type string Connection type (e.g., JDBC, S3, Snowflake)
created string
View JSON Schema on GitHub

JSON Schema

talend-connection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Connection",
  "title": "Connection",
  "type": "object",
  "description": "A data source or destination connection configuration",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "workspaceId": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "description": "Connection type (e.g., JDBC, S3, Snowflake)"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    }
  }
}