Oracle GoldenGate · Schema

CreateTaskRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

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

JSON Schema

oracle-goldengate-createtaskrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateTaskRequest",
  "title": "CreateTaskRequest",
  "type": "object",
  "required": [
    "schedule",
    "action"
  ],
  "properties": {
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "schedule": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        },
        "interval": {
          "type": "string"
        },
        "startTime": {
          "type": "string",
          "format": "date-time"
        }
      },
      "example": "example_value"
    },
    "action": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        },
        "target": {
          "type": "string"
        },
        "command": {
          "type": "string"
        }
      },
      "example": "example_value"
    }
  }
}