Reducto · Schema

SplitResponse

Reducto SplitResponse schema

Document ParsingPDFOCRData ExtractionAIMachine LearningDocument IntelligenceStructured Data

Properties

Name Type Description
response_type string
usage object
result object The split result.
View JSON Schema on GitHub

JSON Schema

reducto-splitresponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/reducto/refs/heads/main/json-schema/reducto-splitresponse.json",
  "title": "SplitResponse",
  "description": "Reducto SplitResponse schema",
  "properties": {
    "response_type": {
      "type": "string",
      "title": "Response Type",
      "default": "split",
      "enum": [
        "split"
      ]
    },
    "usage": {
      "$ref": "#/components/schemas/ParseUsage"
    },
    "result": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/SplitResult"
        },
        {
          "$ref": "#/components/schemas/DeepSplitResult"
        }
      ],
      "title": "Result",
      "description": "The split result."
    }
  },
  "type": "object",
  "required": [
    "usage",
    "result"
  ]
}