Oracle GoldenGate · Schema

UpdateTaskRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
description string
status string
schedule object
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-updatetaskrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateTaskRequest",
  "title": "UpdateTaskRequest",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "status": {
      "type": "string",
      "example": "example_value"
    },
    "schedule": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        },
        "interval": {
          "type": "string"
        },
        "startTime": {
          "type": "string",
          "format": "date-time"
        }
      },
      "example": "example_value"
    }
  }
}