Oracle GoldenGate · Schema

MasterKeyVersion

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
version integer
status string
createdAt string
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-masterkeyversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MasterKeyVersion",
  "title": "MasterKeyVersion",
  "type": "object",
  "properties": {
    "version": {
      "type": "integer",
      "example": 10
    },
    "status": {
      "type": "string",
      "enum": [
        "current",
        "retired"
      ],
      "example": "current"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    }
  }
}