Oracle GoldenGate · Schema

Group

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
id integer
name string
description string
sourceConnectionId integer
targetConnectionId integer
profileId integer
comparePairCount integer
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "sourceConnectionId": {
      "type": "integer",
      "format": "int64",
      "example": "500123"
    },
    "targetConnectionId": {
      "type": "integer",
      "format": "int64",
      "example": "500123"
    },
    "profileId": {
      "type": "integer",
      "format": "int64",
      "example": "500123"
    },
    "comparePairCount": {
      "type": "integer",
      "example": 10
    }
  }
}