Adobe Analytics · JSON Structure

Adobe Analytics Data Repair Repair Job Structure

Status and details of a data repair job

Type: object Properties: 10
AdobeAnalyticsBusiness IntelligenceCustomer IntelligenceDigital MarketingMarketingWeb Analytics

RepairJob is a JSON Structure definition published by Adobe Analytics, describing 10 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

jobId reportSuiteId dateRangeStart dateRangeEnd status progress jobCreateTime jobCompleteTime serverCalls nodesProcessed

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Status and details of a data repair job",
  "name": "RepairJob",
  "properties": {
    "jobId": {
      "type": "integer",
      "description": "Unique job identifier"
    },
    "reportSuiteId": {
      "type": "string",
      "description": "The report suite being repaired"
    },
    "dateRangeStart": {
      "type": "date",
      "description": "Start of the repair date range"
    },
    "dateRangeEnd": {
      "type": "date",
      "description": "End of the repair date range"
    },
    "status": {
      "type": "string",
      "description": "Current status of the repair job",
      "enum": [
        "processing",
        "complete",
        "failed"
      ]
    },
    "progress": {
      "type": "integer",
      "description": "Job completion percentage (0-100)"
    },
    "jobCreateTime": {
      "type": "datetime",
      "description": "Timestamp when the job was created"
    },
    "jobCompleteTime": {
      "type": "datetime",
      "description": "Timestamp when the job completed"
    },
    "serverCalls": {
      "type": "integer",
      "description": "Actual number of server calls processed"
    },
    "nodesProcessed": {
      "type": "integer",
      "description": "Number of data nodes processed"
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}