Oracle GoldenGate · Schema

CreateConnectionRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
type string
connectionString string
credentials object
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-createconnectionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateConnectionRequest",
  "title": "CreateConnectionRequest",
  "type": "object",
  "required": [
    "credentials"
  ],
  "properties": {
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "connectionString": {
      "type": "string",
      "example": "example_value"
    },
    "credentials": {
      "type": "object",
      "required": [
        "domain",
        "alias"
      ],
      "properties": {
        "domain": {
          "type": "string"
        },
        "alias": {
          "type": "string"
        }
      },
      "example": "example_value"
    }
  }
}