Oracle GoldenGate · Schema

TrailList

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
trails array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-traillist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrailList",
  "title": "TrailList",
  "type": "object",
  "properties": {
    "trails": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "path": {
            "type": "string"
          },
          "sequence": {
            "type": "integer"
          }
        }
      },
      "example": []
    }
  }
}