Oracle GoldenGate · Schema

PipelineSource

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
id string
name string
type string Source type
connectionName string
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-pipelinesource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PipelineSource",
  "title": "PipelineSource",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "type": {
      "type": "string",
      "description": "Source type",
      "enum": [
        "Kafka",
        "GoldenGate",
        "JMS",
        "REST",
        "CSV",
        "Database"
      ],
      "example": "Kafka"
    },
    "connectionName": {
      "type": "string",
      "example": "example_value"
    }
  }
}