LinkedIn · JSON Structure

Linkedin Sales Navigator Crm Data Validation Export Job Structure

CrmDataValidationExportJob from LinkedIn API

Type: object Properties: 7
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

CrmDataValidationExportJob is a JSON Structure definition published by LinkedIn, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

jobId exportStartAt exportEndAt status downloadUrls nextExportStartAt expireAt

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-structure/linkedin-sales-navigator-crm-data-validation-export-job-structure.json",
  "name": "CrmDataValidationExportJob",
  "description": "CrmDataValidationExportJob from LinkedIn API",
  "type": "object",
  "properties": {
    "jobId": {
      "type": "int64",
      "description": "Export job ID",
      "example": 123456789
    },
    "exportStartAt": {
      "type": "int64",
      "description": "Start time of the export",
      "example": 1640000000000
    },
    "exportEndAt": {
      "type": "int64",
      "nullable": true,
      "description": "End time of the export",
      "example": 1640001000000
    },
    "status": {
      "type": "string",
      "enum": [
        "PROCESSING",
        "COMPLETED",
        "FAILED_DUE_TO_INTERNAL_ERROR"
      ],
      "description": "Current status of the export job",
      "example": "COMPLETED"
    },
    "downloadUrls": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "nullable": true,
      "description": "URLs for downloading the exported data",
      "example": [
        "https://media.licdn.com/crm-validation/export_1.csv",
        "https://media.licdn.com/crm-validation/export_2.csv"
      ]
    },
    "nextExportStartAt": {
      "type": "int64",
      "nullable": true,
      "description": "Suggested start time for next export",
      "example": 1640001000000
    },
    "expireAt": {
      "type": "int64",
      "nullable": true,
      "description": "Expiration timestamp for download URLs",
      "example": 1640100000000
    }
  }
}