Refinitiv Eikon · Schema

ExtractionWithNotesResponse

Response containing both extracted data and detailed notes.

AnalyticsFinancial DataFinancial NewsMarket DataReal-Time DataTrading

Properties

Name Type Description
JobId string Unique identifier for the extraction job.
Notes array Detailed processing notes from the extraction.
value array Array of extracted data records.
View JSON Schema on GitHub

JSON Schema

refinitiv-eikon-extractionwithnotesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExtractionWithNotesResponse",
  "title": "ExtractionWithNotesResponse",
  "type": "object",
  "description": "Response containing both extracted data and detailed notes.",
  "properties": {
    "JobId": {
      "type": "string",
      "description": "Unique identifier for the extraction job."
    },
    "Notes": {
      "type": "array",
      "description": "Detailed processing notes from the extraction.",
      "items": {
        "type": "string"
      }
    },
    "value": {
      "type": "array",
      "description": "Array of extracted data records.",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    }
  }
}