Oracle GoldenGate · Schema

CreateReplicatRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
type string
trail string
begin string
config array
checkpointTable string
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-createreplicatrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateReplicatRequest",
  "title": "CreateReplicatRequest",
  "type": "object",
  "required": [
    "type",
    "trail",
    "config"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "classic",
        "coordinated",
        "integrated",
        "parallel"
      ],
      "example": "classic"
    },
    "trail": {
      "type": "string",
      "example": "example_value"
    },
    "begin": {
      "type": "string",
      "example": "example_value"
    },
    "config": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    },
    "checkpointTable": {
      "type": "string",
      "example": "example_value"
    }
  }
}