Oracle GoldenGate · Schema

ImportResult

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
success boolean
importedArtifacts integer
messages array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-importresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportResult",
  "title": "ImportResult",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "example": true
    },
    "importedArtifacts": {
      "type": "integer",
      "example": 10
    },
    "messages": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    }
  }
}