Oracle GoldenGate · Schema

Service

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
name string Service name
type string Service type
status string Service status
port integer Service listening port
secure boolean Whether the service uses SSL/TLS
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-rest-service-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Service",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Service name"
    },
    "type": {
      "type": "string",
      "description": "Service type"
    },
    "status": {
      "type": "string",
      "description": "Service status"
    },
    "port": {
      "type": "integer",
      "description": "Service listening port"
    },
    "secure": {
      "type": "boolean",
      "description": "Whether the service uses SSL/TLS"
    }
  }
}