All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.api.data.createPipeline.json Maven / Gradle / Ivy

The newest version!
{
  "$id": "https://open-metadata.org/schema/api/data/createPipeline.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreatePipelineRequest",
  "description": "Create Pipeline entity request",
  "type": "object",
  "javaType": "org.openmetadata.catalog.api.data.CreatePipeline",
  "javaInterfaces": ["org.openmetadata.core.entity.interfaces.CreateEntity"],

  "properties": {
    "name": {
      "description": "Name that identifies this pipeline instance uniquely.",
      "$ref": "../../type/basic.json#/definitions/entityName"
    },
    "displayName": {
      "description": "Display Name that identifies this Pipeline. It could be title or label from the source services.",
      "type": "string"
    },
    "description": {
      "description": "Description of the pipeline instance. What it has and how to use it.",
      "$ref": "../../type/basic.json#/definitions/markdown"
    },
    "pipelineUrl": {
      "description": "Pipeline URL suffix to visit/manage. This URL points to respective pipeline service UI",
      "type": "string"
    },
    "concurrency": {
      "description": "Concurrency of the Pipeline",
      "type": "integer"
    },
    "pipelineLocation": {
      "description": "Pipeline Code Location",
      "type": "string"
    },
    "startDate": {
      "description": "Start date of the workflow",
      "$ref": "../../type/basic.json#/definitions/dateTime"
    },
    "tasks": {
      "description": "All the tasks that are part of pipeline.",
      "type": "array",
      "items": {
        "$ref": "../../entity/data/pipeline.json#/definitions/task"
      },
      "default": null
    },
    "tags": {
      "description": "Tags for this Pipeline.",
      "type": "array",
      "items": {
        "$ref": "../../type/tagLabel.json"
      },
      "default": null
    },
    "owner": {
      "description": "Owner of this pipeline",
      "$ref": "../../type/entityReference.json"
    },
    "service": {
      "description": "Link to the pipeline service where this pipeline is hosted in",
      "$ref": "../../type/entityReference.json"
    },
    "extension": {
      "description": "Entity extension data with custom attributes added to the entity.",
      "$ref": "../../type/basic.json#/definitions/entityExtension"
    }
  },
  "required": ["name", "service"],
  "additionalProperties": false
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy