Oracle GoldenGate · Schema

PipelineExport

Complete pipeline export including all dependencies (sources, targets, connections, references, predictive models, geo fences, visualizations, and custom jars)

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
pipeline object
connections array
references array
customJars array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-pipelineexport-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PipelineExport",
  "title": "PipelineExport",
  "type": "object",
  "description": "Complete pipeline export including all dependencies (sources, targets, connections, references, predictive models, geo fences, visualizations, and custom jars)",
  "properties": {
    "pipeline": {
      "$ref": "#/components/schemas/Pipeline"
    },
    "connections": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "configuration": {
            "type": "object",
            "additionalProperties": true
          }
        }
      },
      "example": []
    },
    "references": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        }
      },
      "example": []
    },
    "customJars": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "path": {
            "type": "string"
          }
        }
      },
      "example": []
    }
  }
}