llamaindex · Schema

CreateExtractionJobRequest

Request body for creating an extraction job.

Properties

Name Type Description
extraction_agent_id string Identifier of the extraction agent to use for processing.
file_ids array List of file identifiers to process in this extraction job.
View JSON Schema on GitHub

JSON Schema

llamaindex-createextractionjobrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateExtractionJobRequest",
  "title": "CreateExtractionJobRequest",
  "type": "object",
  "description": "Request body for creating an extraction job.",
  "required": [
    "extraction_agent_id",
    "file_ids"
  ],
  "properties": {
    "extraction_agent_id": {
      "type": "string",
      "description": "Identifier of the extraction agent to use for processing."
    },
    "file_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of file identifiers to process in this extraction job."
    }
  }
}