| name | data type | description | 
|---|---|---|
| scheduledExecutionId | number | |
| policy | string | |
| dumpExecutionId | number | |
| metadata | ApiHive3ReplicationMetricsMetadata | |
| progress | ApiHive3ReplicationMetricsProgress | |
| startDate | string | |
| endDate | string | |
| errorMessage | string | 
Example
{
  "scheduledExecutionId" : 12345,
  "policy" : "...",
  "dumpExecutionId" : 12345,
  "metadata" : {
    "dbName" : "...",
    "replicationType" : "BOOTSTRAP",
    "stagingDir" : "...",
    "lastReplId" : 12345
  },
  "progress" : {
    "status" : "SKIPPED",
    "stages" : [ {
      "name" : "...",
      "status" : "FAILOVER_IN_PROGRESS",
      "startDate" : "...",
      "endDate" : "...",
      "metrics" : [ { }, { } ],
      "errorLogPath" : "..."
    }, {
      "name" : "...",
      "status" : "IN_PROGRESS",
      "startDate" : "...",
      "endDate" : "...",
      "metrics" : [ { }, { } ],
      "errorLogPath" : "..."
    } ]
  },
  "startDate" : "...",
  "endDate" : "...",
  "errorMessage" : "..."
}