Oracle GoldenGate · Schema

CreateExtractRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

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

JSON Schema

oracle-goldengate-createextractrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateExtractRequest",
  "title": "CreateExtractRequest",
  "type": "object",
  "required": [
    "type",
    "trail",
    "config"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "cdc",
        "initialload",
        "datapump"
      ],
      "example": "cdc"
    },
    "trail": {
      "type": "string",
      "example": "example_value"
    },
    "begin": {
      "type": "string",
      "example": "example_value"
    },
    "config": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    }
  }
}