Oracle GoldenGate · Schema

ParameterInfo

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
name string
description string
type string
defaultValue string
validValues array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-parameterinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ParameterInfo",
  "title": "ParameterInfo",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "defaultValue": {
      "type": "string",
      "example": "example_value"
    },
    "validValues": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    }
  }
}