Talend · Schema

Artifact

A deployable Talend artifact (JAR, ZIP, etc.)

API ManagementData IntegrationData QualityETLOrchestrationPipelines

Properties

Name Type Description
id string
name string
version string
description string
created string
View JSON Schema on GitHub

JSON Schema

talend-artifact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Artifact",
  "title": "Artifact",
  "type": "object",
  "description": "A deployable Talend artifact (JAR, ZIP, etc.)",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    }
  }
}