Refinitiv Eikon · Schema

ExtractionJob

Status and metadata for an extraction job.

AnalyticsFinancial DataFinancial NewsMarket DataReal-Time DataTrading

Properties

Name Type Description
JobId string Unique identifier for the job.
Status string Current status of the extraction job.
StartedUtc string Timestamp when the job started.
CompletedUtc string Timestamp when the job completed.
View JSON Schema on GitHub

JSON Schema

refinitiv-eikon-extractionjob-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExtractionJob",
  "title": "ExtractionJob",
  "type": "object",
  "description": "Status and metadata for an extraction job.",
  "properties": {
    "JobId": {
      "type": "string",
      "description": "Unique identifier for the job."
    },
    "Status": {
      "type": "string",
      "description": "Current status of the extraction job.",
      "enum": [
        "InProgress",
        "Completed",
        "Failed",
        "Cancelled"
      ]
    },
    "StartedUtc": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the job started."
    },
    "CompletedUtc": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the job completed."
    }
  }
}