llamaindex · Schema

ParseJobCreated

Response returned when a parse job is successfully created.

Properties

Name Type Description
id string Unique identifier of the created parse job.
status string Initial status of the parse job.
View JSON Schema on GitHub

JSON Schema

llamaindex-parsejobcreated-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ParseJobCreated",
  "title": "ParseJobCreated",
  "type": "object",
  "description": "Response returned when a parse job is successfully created.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the created parse job."
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "processing",
        "completed",
        "failed"
      ],
      "description": "Initial status of the parse job."
    }
  }
}