Oracle GoldenGate · Schema

DataStream

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
name string Unique data stream name
description string Stream description
status string Current stream status
source object Source configuration
target object Target distribution configuration
filters array Table and operation filters
asyncApiSpec string Path to the AsyncAPI specification
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-data-streams-rest-data-stream-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DataStream",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Unique data stream name"
    },
    "description": {
      "type": "string",
      "description": "Stream description"
    },
    "status": {
      "type": "string",
      "description": "Current stream status"
    },
    "source": {
      "type": "object",
      "description": "Source configuration"
    },
    "target": {
      "type": "object",
      "description": "Target distribution configuration"
    },
    "filters": {
      "type": "array",
      "description": "Table and operation filters"
    },
    "asyncApiSpec": {
      "type": "string",
      "description": "Path to the AsyncAPI specification"
    },
    "createdAt": {
      "type": "string"
    },
    "updatedAt": {
      "type": "string"
    }
  }
}