Oracle GoldenGate · Schema

DatabaseConnection

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
name string Connection name
type string Database type
connectionString string Database connection string
credentials object
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-databaseconnection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseConnection",
  "title": "DatabaseConnection",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Connection name",
      "example": "Example Title"
    },
    "type": {
      "type": "string",
      "description": "Database type",
      "example": "example_value"
    },
    "connectionString": {
      "type": "string",
      "description": "Database connection string",
      "example": "example_value"
    },
    "credentials": {
      "type": "object",
      "properties": {
        "domain": {
          "type": "string"
        },
        "alias": {
          "type": "string"
        }
      },
      "example": "example_value"
    }
  }
}