Oracle GoldenGate · Schema

CollectorPath

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
name string
status string
trail string Target trail file
port integer
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-collectorpath-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CollectorPath",
  "title": "CollectorPath",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "status": {
      "type": "string",
      "enum": [
        "running",
        "stopped",
        "error"
      ],
      "example": "running"
    },
    "trail": {
      "type": "string",
      "description": "Target trail file",
      "example": "example_value"
    },
    "port": {
      "type": "integer",
      "example": 10
    }
  }
}