llamaindex · Schema

IndexFileCounts

File processing counts for an index, broken down by status.

Properties

Name Type Description
total integer Total number of files in the index.
pending integer Number of files pending processing.
processing integer Number of files currently being processed.
completed integer Number of files successfully processed.
error integer Number of files that encountered processing errors.
View JSON Schema on GitHub

JSON Schema

llamaindex-indexfilecounts-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IndexFileCounts",
  "title": "IndexFileCounts",
  "type": "object",
  "description": "File processing counts for an index, broken down by status.",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of files in the index."
    },
    "pending": {
      "type": "integer",
      "description": "Number of files pending processing."
    },
    "processing": {
      "type": "integer",
      "description": "Number of files currently being processed."
    },
    "completed": {
      "type": "integer",
      "description": "Number of files successfully processed."
    },
    "error": {
      "type": "integer",
      "description": "Number of files that encountered processing errors."
    }
  }
}