Pipeline Object

A pipeline component defining an activity, resource, schedule, or precondition.

Data ProcessingETLWorkflowsData PipelineAutomation

Properties

Name Type Description
id string The identifier of the pipeline object
name string The name
fields array
View JSON Schema on GitHub

JSON Schema

pipeline-object-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-data-pipeline/json-schema/pipeline-object-schema.json",
  "title": "Pipeline Object",
  "description": "A pipeline component defining an activity, resource, schedule, or precondition.",
  "type": "object",
  "required": [
    "id",
    "name",
    "fields"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "The identifier of the pipeline object"
    },
    "name": {
      "type": "string",
      "description": "The name"
    },
    "fields": {
      "type": "array"
    }
  }
}