V2
Parse

Parse File

Parse a file by file ID or URL.

Provide either file_id (a previously uploaded file) or source_url (a publicly accessible URL). Configure parsing with options like tier, target_pages, and lang.

Tiers

  • fast — rule-based, cheapest, no AI
  • cost_effective — balanced speed and quality
  • agentic — full AI-powered parsing
  • agentic_plus — premium AI with specialized features

The job runs asynchronously. Poll GET /parse/{job_id} with expand=text or expand=markdown to retrieve results.

post/api/v2/parse

Query parameters

project_idstring uuid nullable
organization_idstring uuid nullable

Cookies

sessionstring nullable

Request body

tier'fast' | 'cost_effective' | 'agentic' | 'agentic_plus' required

Parsing tier: 'fast' (rule-based, cheapest), 'cost_effective' (balanced), 'agentic' (AI-powered with custom prompts), or 'agentic_plus' (premium AI with highest accuracy)

client_namestring nullable

Identifier for the client/application making the request. Used for analytics and debugging. Example: 'my-app-v2'

fast_optionsLlamaParseFastOptions

Options for fast tier parsing (rule-based, no AI).

Fast tier uses deterministic algorithms for text extraction without AI enhancement. It's the fastest and most cost-effective option, best suited for simple documents with standard layouts. Currently has no configurable options but reserved for future expansion.

disable_cacheboolean nullable

Bypass result caching and force re-parsing. Use when document content may have changed or you need fresh results

file_idstring nullable

ID of an existing file in the project to parse. Mutually exclusive with source_url

source_urlstring nullable

Public URL of the document to parse. Mutually exclusive with file_id

http_proxystring nullable

HTTP/HTTPS proxy for fetching source_url. Ignored if using file_id

Example request

{
  "processing_options": {
    "auto_mode_configuration": [
      {
        "parsing_conf": {
          "tier": "agentic",
          "version": "latest"
        },
        "table_in_page": true
      }
    ]
  },
  "webhook_configurations": [
    {
      "webhook_events": [
        "parse.success",
        "parse.error"
      ],
      "webhook_output_format": "json"
    }
  ],
  "output_options": {
    "additional_outputs": [
      "stripped_md",
      "concatenated_stripped_txt",
      "word_bbox"
    ],
    "granular_bboxes": [
      "word",
      "line",
      "cell"
    ]
  }
}

Response

Successful Response

idstring required

Unique parse job identifier

created_atstring date-time nullable

Creation datetime

updated_atstring date-time nullable

Update datetime

project_idstring required

Project this job belongs to

status'PENDING' | 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' required

Current job status: PENDING, RUNNING, COMPLETED, FAILED, or CANCELLED

error_messagestring nullable

Error details when status is FAILED

namestring nullable

Optional display name for this parse job

tierstring nullable

Parsing tier used for this job

Example response

{
  "id": "pjb-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
  "project_id": "prj-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
  "name": "Q4 Financial Report",
  "tier": "fast"
}

Changes

Changed in 19 of the 33 revisions of this API.2652213

    • removed the enum value 2026-05-28 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-28 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-06-01 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-06-01 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • added the new optional request property output_options/granular_bboxes

      new-optional-request-property

    • added the new 2026-06-04 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-06-04 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-06-05 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-06-05 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the optional property detail/items/ctx to the response with the 422 status

      response-optional-property-added

    • added the optional property detail/items/input to the response with the 422 status

      response-optional-property-added

    This revision also has 5 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • removed the enum value 2026-05-21 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-21 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • added the new 2026-06-01 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-06-01 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new optional request property webhook_configurations/items/webhook_output_format

      new-optional-request-property

    • removed the enum value 2026-04-09 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-09 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • added the new 2026-05-28 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-05-28 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

  • 1c29e1491a3842See the full diff
    • removed the enum value 2026-05-11 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-11 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-13 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-13 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • added the new 2026-05-21 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-05-21 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 34da5826db1c806See the full diff
    • removed the enum value 2025-12-18 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2025-12-18 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2025-12-31 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2025-12-31 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-08 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-08 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-09 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-09 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-16 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-16 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-21 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-21 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-22 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-22 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-24 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-24 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-29 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-29 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-30 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-30 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-03 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-03 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-18 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-18 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-20 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-20 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-24 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-24 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-26 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-26 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-02 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-02 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-03 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-03 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-04 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-04 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-05 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-05 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-09 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-09 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-10 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-10 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-11 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-11 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-12 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-12 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-17 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-17 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-19 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-19 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-20 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-20 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-22 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-22 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-23 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-23 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-24 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-24 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-25 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-25 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-26 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-26 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-27 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-27 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-30 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-30 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-31 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-31 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-02 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-02 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-06 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-06 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-14 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-14 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-19 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-19 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-22 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-22 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-27 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-27 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • added the new optional request property output_options/additional_outputs

      new-optional-request-property

    • added the new 2026-05-11 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-05-11 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-05-13 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-05-13 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • the processing_control/timeouts/base_in_seconds/anyOf[subschema #1]/ request property's max was increased from 1800.00 to 7200.00

      request-property-max-increased

  • fb63fb8d662c5180See the full diff
    • removed the enum value 2026-05-11 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-11 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-13 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-13 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • the processing_control/timeouts/base_in_seconds/anyOf[subschema #1]/ request property's max was decreased to 1800.00

      request-property-max-decreased

    • removed the request property output_options/additional_outputs

      request-property-removed

    • added the new 2025-12-18 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2025-12-18 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2025-12-31 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2025-12-31 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-08 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-08 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-09 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-09 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-16 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-16 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-21 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-21 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-22 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-22 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-24 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-24 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-29 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-29 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-30 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-30 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-03 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-03 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-18 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-18 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-20 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-20 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-24 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-24 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-26 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-26 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-02 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-02 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-03 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-03 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-04 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-04 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-05 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-05 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-09 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-09 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-10 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-10 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-11 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-11 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-12 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-12 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-17 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-17 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-19 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-19 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-20 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-20 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-22 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-22 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-23 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-23 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-24 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-24 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-25 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-25 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-26 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-26 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-27 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-27 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-30 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-30 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-31 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-31 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-02 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-02 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-06 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-06 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-14 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-14 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-19 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-19 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-22 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-22 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-27 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-27 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    This revision also has 46 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • the processing_control/timeouts/base_in_seconds/anyOf[subschema #1]/ request property's max was increased from 1800.00 to 7200.00

      request-property-max-increased

  • c317ed7c691a785See the full diff
    • removed the enum value 2025-12-18 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2025-12-18 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2025-12-31 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2025-12-31 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-08 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-08 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-09 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-09 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-16 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-16 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-21 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-21 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-22 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-22 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-24 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-24 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-29 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-29 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-30 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-01-30 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-03 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-03 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-18 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-18 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-20 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-20 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-24 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-24 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-26 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-02-26 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-02 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-02 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-03 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-03 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-04 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-04 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-05 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-05 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-09 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-09 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-10 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-10 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-11 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-11 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-12 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-12 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-17 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-17 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-19 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-19 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-20 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-20 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-22 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-22 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-23 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-23 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-24 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-24 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-25 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-25 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-26 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-26 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-27 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-27 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-30 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-30 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-31 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-03-31 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-02 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-02 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-06 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-06 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-14 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-14 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-19 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-19 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-22 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-04-22 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • added the new optional request property output_options/additional_outputs

      new-optional-request-property

    • added the new 2026-05-11 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-05-11 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-05-13 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-05-13 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

  • 1bbc901f8c0d4178See the full diff
    • removed the enum value 2026-05-11 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-11 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-13 of the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the enum value 2026-05-13 of the request property version/anyOf[subschema #1]/

      request-property-enum-value-removed

    • removed the request property output_options/additional_outputs

      request-property-removed

    • added the new 2025-12-18 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2025-12-18 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2025-12-31 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2025-12-31 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-08 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-08 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-09 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-09 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-16 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-16 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-21 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-21 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-22 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-22 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-24 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-24 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-29 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-29 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-30 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-01-30 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-03 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-03 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-18 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-18 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-20 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-20 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-24 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-24 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-26 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-02-26 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-02 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-02 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-03 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-03 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-04 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-04 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-05 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-05 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-09 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-09 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-10 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-10 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-11 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-11 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-12 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-12 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-17 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-17 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-19 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-19 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-20 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-20 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-22 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-22 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-23 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-23 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-24 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-24 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-25 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-25 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-26 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-26 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-27 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-27 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-30 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-30 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-31 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-03-31 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-02 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-02 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-06 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-06 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-14 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-14 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-19 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-19 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-22 enum value to the request property processing_options/auto_mode_configuration/anyOf[subschema #1]/items/parsing_conf/version/anyOf[subschema #1]/

      request-property-enum-value-added

    • added the new 2026-04-22 enum value to the request property version/anyOf[subschema #1]/

      request-property-enum-value-added

    This revision also has 6 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog