Oracle GoldenGate · Schema

ValidateDatabaseRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
host string
port integer
databaseType string
serviceName string
username string
password string
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-validatedatabaserequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValidateDatabaseRequest",
  "title": "ValidateDatabaseRequest",
  "type": "object",
  "required": [
    "host",
    "port",
    "databaseType"
  ],
  "properties": {
    "host": {
      "type": "string",
      "example": "example_value"
    },
    "port": {
      "type": "integer",
      "example": 10
    },
    "databaseType": {
      "type": "string",
      "example": "example_value"
    },
    "serviceName": {
      "type": "string",
      "example": "example_value"
    },
    "username": {
      "type": "string",
      "example": "example_value"
    },
    "password": {
      "type": "string",
      "format": "password",
      "example": "example_value"
    }
  }
}