Talend · Schema

Workspace

A logical grouping of tasks, plans, and connections in Talend Cloud

API ManagementData IntegrationData QualityETLOrchestrationPipelines

Properties

Name Type Description
id string Unique workspace identifier
name string Workspace display name
description string Workspace description
owner string Owner user ID
created string
updated string
View JSON Schema on GitHub

JSON Schema

talend-workspace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Workspace",
  "title": "Workspace",
  "type": "object",
  "description": "A logical grouping of tasks, plans, and connections in Talend Cloud",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique workspace identifier"
    },
    "name": {
      "type": "string",
      "description": "Workspace display name"
    },
    "description": {
      "type": "string",
      "description": "Workspace description"
    },
    "owner": {
      "type": "string",
      "description": "Owner user ID"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "updated": {
      "type": "string",
      "format": "date-time"
    }
  }
}