Talend · Schema

RemoteEngine

A self-hosted Talend remote engine instance

API ManagementData IntegrationData QualityETLOrchestrationPipelines

Properties

Name Type Description
id string
name string
description string
status string
version string Talend Runtime version
workspaceId string
created string
View JSON Schema on GitHub

JSON Schema

talend-remoteengine-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RemoteEngine",
  "title": "RemoteEngine",
  "type": "object",
  "description": "A self-hosted Talend remote engine instance",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "PAIRED",
        "UNPAIRED",
        "OFFLINE",
        "ONLINE"
      ]
    },
    "version": {
      "type": "string",
      "description": "Talend Runtime version"
    },
    "workspaceId": {
      "type": "string"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    }
  }
}