Skip to content

Get Parse Job

client.Parsing.Get(ctx, jobID, query) (*ParsingGetResponse, error)
GET/api/v2/parse/{job_id}

Retrieve a parse job with optional expanded content.

By default returns job metadata only. Use expand to include parsed content:

  • text — plain text output
  • markdown — markdown output
  • items — structured page-by-page output
  • job_metadata — usage and processing details

Content metadata fields (e.g. text_content_metadata) return presigned URLs for downloading large results.

ParametersExpand Collapse
jobID string
query ParsingGetParams
Expand param.Field[[]string]optional

Fields to include: text, markdown, items, metadata, job_metadata, text_content_metadata, markdown_content_metadata, items_content_metadata, metadata_content_metadata, raw_words_content_metadata, xlsx_content_metadata, output_pdf_content_metadata, images_content_metadata. Metadata fields include presigned URLs.

ImageFilenames param.Field[string]optional

Filter to specific image filenames (optional). Example: image_0.png,image_1.jpg

OrganizationID param.Field[string]optional
ProjectID param.Field[string]optional
ReturnsExpand Collapse
type ParsingGetResponse struct{…}

Parse result response with job status and optional content or metadata.

The job field is always included. Other fields are included based on expand parameters.

Job ParsingGetResponseJob

Parse job status and metadata

ID string

Unique parse job identifier

ProjectID string

Project this job belongs to

Status string

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

One of the following:
const ParsingGetResponseJobStatusPending ParsingGetResponseJobStatus = "PENDING"
const ParsingGetResponseJobStatusRunning ParsingGetResponseJobStatus = "RUNNING"
const ParsingGetResponseJobStatusCompleted ParsingGetResponseJobStatus = "COMPLETED"
const ParsingGetResponseJobStatusFailed ParsingGetResponseJobStatus = "FAILED"
const ParsingGetResponseJobStatusCancelled ParsingGetResponseJobStatus = "CANCELLED"
CreatedAt Timeoptional

Creation datetime

formatdate-time
ErrorMessage stringoptional

Error details when status is FAILED

Name stringoptional

Optional display name for this parse job

Tier stringoptional

Parsing tier used for this job

UpdatedAt Timeoptional

Update datetime

formatdate-time
ImagesContentMetadata ParsingGetResponseImagesContentMetadataoptional

Metadata for all extracted images.

Images []ParsingGetResponseImagesContentMetadataImage

List of image metadata with presigned URLs

Filename string

Image filename (e.g., ‘image_0.png’)

Index int64

Index of the image in the extraction order

Bbox ParsingGetResponseImagesContentMetadataImageBboxoptional

Bounding box for an image on its page.

H int64

Height of the bounding box

W int64

Width of the bounding box

X int64

X coordinate of the bounding box

Y int64

Y coordinate of the bounding box

Category stringoptional

Image category: ‘screenshot’ (full page), ‘embedded’ (images in document), or ‘layout’ (cropped from layout detection)

One of the following:
const ParsingGetResponseImagesContentMetadataImageCategoryScreenshot ParsingGetResponseImagesContentMetadataImageCategory = "screenshot"
const ParsingGetResponseImagesContentMetadataImageCategoryEmbedded ParsingGetResponseImagesContentMetadataImageCategory = "embedded"
const ParsingGetResponseImagesContentMetadataImageCategoryLayout ParsingGetResponseImagesContentMetadataImageCategory = "layout"
ContentType stringoptional

MIME type of the image

PresignedURL stringoptional

Presigned URL to download the image

DeprecatedSizeBytes int64optional

Deprecated: always returns None. Will be removed in a future release.

TotalCount int64

Total number of extracted images

Items ParsingGetResponseItemsoptional

Structured JSON result (if requested)

Pages []ParsingGetResponseItemsPageUnion

List of structured pages or failed page entries

One of the following:
type ParsingGetResponseItemsPageStructuredResultPage struct{…}
Items []ParsingGetResponseItemsPageStructuredResultPageItemUnion

List of structured items on the page

One of the following:
type TextItem struct{…}
Md string

Markdown representation preserving formatting

Value string

Text content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type TextItemTypeoptional

Text item type

type HeadingItem struct{…}
Level int64

Heading level (1-6)

Md string

Markdown representation preserving formatting

Value string

Heading text content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type HeadingItemTypeoptional

Heading item type

type ListItem struct{…}
Items []ListItemItemUnion

List of nested text or list items

One of the following:
type TextItem struct{…}
Md string

Markdown representation preserving formatting

Value string

Text content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type TextItemTypeoptional

Text item type

type ListItem ListItem
Md string

Markdown representation preserving formatting

Ordered bool

Whether the list is ordered or unordered

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type ListItemTypeoptional

List item type

type CodeItem struct{…}
Md string

Markdown representation preserving formatting

Value string

Code content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Language stringoptional

Programming language identifier

Type CodeItemTypeoptional

Code block item type

type TableItem struct{…}
Csv string

CSV representation of the table

HTML string

HTML representation of the table

Md string

Markdown representation preserving formatting

Rows [][]TableItemRowUnion

Table data as array of arrays (string, number, or null)

One of the following:
string
float64
Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

MergedFromPages []int64optional

List of page numbers with tables that were merged into this table (e.g., [1, 2, 3, 4])

MergedIntoPage int64optional

Populated when merged into another table. Page number where the full merged table begins (used on empty tables).

ParseConcerns []TableItemParseConcernoptional

Quality concerns detected during table extraction, indicating the table may have issues

Details string

Human-readable details about the concern

Type string

Type of parse concern (e.g. header_value_type_mismatch, inconsistent_row_cell_count)

Type TableItemTypeoptional

Table item type

type ImageItem struct{…}
Caption string

Image caption

Md string

Markdown representation preserving formatting

URL string

URL to the image

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type ImageItemTypeoptional

Image item type

Markdown representation preserving formatting

Display text of the link

URL of the link

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Link item type

type HeaderItem struct{…}
Items []HeaderItemItemUnion

List of items within the header

One of the following:
type TextItem struct{…}
Md string

Markdown representation preserving formatting

Value string

Text content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type TextItemTypeoptional

Text item type

type HeadingItem struct{…}
Level int64

Heading level (1-6)

Md string

Markdown representation preserving formatting

Value string

Heading text content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type HeadingItemTypeoptional

Heading item type

type ListItem struct{…}
Items []ListItemItemUnion

List of nested text or list items

One of the following:
type TextItem struct{…}
Md string

Markdown representation preserving formatting

Value string

Text content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type TextItemTypeoptional

Text item type

type ListItem ListItem
Md string

Markdown representation preserving formatting

Ordered bool

Whether the list is ordered or unordered

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type ListItemTypeoptional

List item type

type CodeItem struct{…}
Md string

Markdown representation preserving formatting

Value string

Code content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Language stringoptional

Programming language identifier

Type CodeItemTypeoptional

Code block item type

type TableItem struct{…}
Csv string

CSV representation of the table

HTML string

HTML representation of the table

Md string

Markdown representation preserving formatting

Rows [][]TableItemRowUnion

Table data as array of arrays (string, number, or null)

One of the following:
string
float64
Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

MergedFromPages []int64optional

List of page numbers with tables that were merged into this table (e.g., [1, 2, 3, 4])

MergedIntoPage int64optional

Populated when merged into another table. Page number where the full merged table begins (used on empty tables).

ParseConcerns []TableItemParseConcernoptional

Quality concerns detected during table extraction, indicating the table may have issues

Details string

Human-readable details about the concern

Type string

Type of parse concern (e.g. header_value_type_mismatch, inconsistent_row_cell_count)

Type TableItemTypeoptional

Table item type

type ImageItem struct{…}
Caption string

Image caption

Md string

Markdown representation preserving formatting

URL string

URL to the image

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type ImageItemTypeoptional

Image item type

Markdown representation preserving formatting

Display text of the link

URL of the link

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Link item type

Md string

Markdown representation preserving formatting

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type HeaderItemTypeoptional

Page header container

List of items within the footer

One of the following:
type TextItem struct{…}
Md string

Markdown representation preserving formatting

Value string

Text content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type TextItemTypeoptional

Text item type

type HeadingItem struct{…}
Level int64

Heading level (1-6)

Md string

Markdown representation preserving formatting

Value string

Heading text content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type HeadingItemTypeoptional

Heading item type

type ListItem struct{…}
Items []ListItemItemUnion

List of nested text or list items

One of the following:
type TextItem struct{…}
Md string

Markdown representation preserving formatting

Value string

Text content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type TextItemTypeoptional

Text item type

type ListItem ListItem
Md string

Markdown representation preserving formatting

Ordered bool

Whether the list is ordered or unordered

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type ListItemTypeoptional

List item type

type CodeItem struct{…}
Md string

Markdown representation preserving formatting

Value string

Code content

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Language stringoptional

Programming language identifier

Type CodeItemTypeoptional

Code block item type

type TableItem struct{…}
Csv string

CSV representation of the table

HTML string

HTML representation of the table

Md string

Markdown representation preserving formatting

Rows [][]TableItemRowUnion

Table data as array of arrays (string, number, or null)

One of the following:
string
float64
Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

MergedFromPages []int64optional

List of page numbers with tables that were merged into this table (e.g., [1, 2, 3, 4])

MergedIntoPage int64optional

Populated when merged into another table. Page number where the full merged table begins (used on empty tables).

ParseConcerns []TableItemParseConcernoptional

Quality concerns detected during table extraction, indicating the table may have issues

Details string

Human-readable details about the concern

Type string

Type of parse concern (e.g. header_value_type_mismatch, inconsistent_row_cell_count)

Type TableItemTypeoptional

Table item type

type ImageItem struct{…}
Caption string

Image caption

Md string

Markdown representation preserving formatting

URL string

URL to the image

Bbox []BBoxoptional

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Type ImageItemTypeoptional

Image item type

Markdown representation preserving formatting

Display text of the link

URL of the link

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Link item type

Markdown representation preserving formatting

List of bounding boxes

H float64

Height of the bounding box

W float64

Width of the bounding box

X float64

X coordinate of the bounding box

Y float64

Y coordinate of the bounding box

Confidence float64optional

Confidence score

EndIndex int64optional

End index in the text

Label stringoptional

Label for the bounding box

StartIndex int64optional

Start index in the text

Page footer container

PageHeight float64

Height of the page in points

PageNumber int64

Page number of the document

PageWidth float64

Width of the page in points

Success bool

Success indicator

type ParsingGetResponseItemsPageFailedStructuredPage struct{…}
Error string

Error message describing the failure

PageNumber int64

Page number of the document

Success bool

Failure indicator

JobMetadata map[string, any]optional

Job execution metadata (if requested)

Markdown ParsingGetResponseMarkdownoptional

Markdown result (if requested)

Pages []ParsingGetResponseMarkdownPageUnion

List of markdown pages or failed page entries

One of the following:
type ParsingGetResponseMarkdownPageMarkdownResultPage struct{…}
Markdown string

Markdown content of the page

PageNumber int64

Page number of the document

Success bool

Success indicator

Footer of the page in markdown

Header stringoptional

Header of the page in markdown

type ParsingGetResponseMarkdownPageFailedMarkdownPage struct{…}
Error string

Error message describing the failure

PageNumber int64

Page number of the document

Success bool

Failure indicator

MarkdownFull stringoptional

Full raw markdown content (if requested)

Metadata ParsingGetResponseMetadataoptional

Result containing metadata (page level and general) for the parsed document.

Pages []ParsingGetResponseMetadataPage

List of page metadata entries

PageNumber int64

Page number of the document

Confidence float64optional

Confidence score for the page parsing (0-1)

CostOptimized booloptional

Whether cost-optimized parsing was used for the page

OriginalOrientationAngle int64optional

Original orientation angle of the page in degrees

PrintedPageNumber stringoptional

Printed page number as it appears in the document

SlideSectionName stringoptional

Section name from presentation slides

SpeakerNotes stringoptional

Speaker notes from presentation slides

TriggeredAutoMode booloptional

Whether auto mode was triggered for the page

RawParameters map[string, any]optional
ResultContentMetadata map[string, ParsingGetResponseResultContentMetadata]optional

Metadata including size, existence, and presigned URLs for result files

SizeBytes int64

Size of the result file in bytes

Exists booloptional

Whether the result file exists in S3

PresignedURL stringoptional

Presigned URL to download the result file

Text ParsingGetResponseTextoptional

Plain text result (if requested)

Pages []ParsingGetResponseTextPage

List of text pages

PageNumber int64

Page number of the document

Text string

Plain text content of the page

TextFull stringoptional

Full raw text content (if requested)

Get Parse Job

package main

import (
  "context"
  "fmt"

  "github.com/stainless-sdks/llamacloud-prod-go"
  "github.com/stainless-sdks/llamacloud-prod-go/option"
)

func main() {
  client := llamacloudprod.NewClient(
    option.WithAPIKey("My API Key"),
  )
  parsing, err := client.Parsing.Get(
    context.TODO(),
    "job_id",
    llamacloudprod.ParsingGetParams{

    },
  )
  if err != nil {
    panic(err.Error())
  }
  fmt.Printf("%+v\n", parsing.Job)
}
{
  "job": {
    "id": "pjb-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
    "project_id": "prj-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
    "status": "PENDING",
    "created_at": "2019-12-27T18:11:19.117Z",
    "error_message": "error_message",
    "name": "Q4 Financial Report",
    "tier": "fast",
    "updated_at": "2019-12-27T18:11:19.117Z"
  },
  "images_content_metadata": {
    "images": [
      {
        "filename": "filename",
        "index": 0,
        "bbox": {
          "h": 0,
          "w": 0,
          "x": 0,
          "y": 0
        },
        "category": "screenshot",
        "content_type": "content_type",
        "presigned_url": "presigned_url",
        "size_bytes": 0
      }
    ],
    "total_count": 0
  },
  "items": {
    "pages": [
      {
        "items": [
          {
            "md": "md",
            "value": "value",
            "bbox": [
              {
                "h": 0,
                "w": 0,
                "x": 0,
                "y": 0,
                "confidence": 0,
                "end_index": 0,
                "label": "label",
                "start_index": 0
              }
            ],
            "type": "text"
          }
        ],
        "page_height": 0,
        "page_number": 0,
        "page_width": 0,
        "success": true
      }
    ]
  },
  "job_metadata": {
    "foo": "bar"
  },
  "markdown": {
    "pages": [
      {
        "markdown": "markdown",
        "page_number": 0,
        "success": true,
        "footer": "footer",
        "header": "header"
      }
    ]
  },
  "markdown_full": "markdown_full",
  "metadata": {
    "pages": [
      {
        "page_number": 0,
        "confidence": 0,
        "cost_optimized": true,
        "original_orientation_angle": 0,
        "printed_page_number": "printed_page_number",
        "slide_section_name": "slide_section_name",
        "speaker_notes": "speaker_notes",
        "triggered_auto_mode": true
      }
    ]
  },
  "raw_parameters": {
    "foo": "bar"
  },
  "result_content_metadata": {
    "foo": {
      "size_bytes": 0,
      "exists": true,
      "presigned_url": "presigned_url"
    }
  },
  "text": {
    "pages": [
      {
        "page_number": 0,
        "text": "text"
      }
    ]
  },
  "text_full": "text_full"
}
Returns Examples
{
  "job": {
    "id": "pjb-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
    "project_id": "prj-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
    "status": "PENDING",
    "created_at": "2019-12-27T18:11:19.117Z",
    "error_message": "error_message",
    "name": "Q4 Financial Report",
    "tier": "fast",
    "updated_at": "2019-12-27T18:11:19.117Z"
  },
  "images_content_metadata": {
    "images": [
      {
        "filename": "filename",
        "index": 0,
        "bbox": {
          "h": 0,
          "w": 0,
          "x": 0,
          "y": 0
        },
        "category": "screenshot",
        "content_type": "content_type",
        "presigned_url": "presigned_url",
        "size_bytes": 0
      }
    ],
    "total_count": 0
  },
  "items": {
    "pages": [
      {
        "items": [
          {
            "md": "md",
            "value": "value",
            "bbox": [
              {
                "h": 0,
                "w": 0,
                "x": 0,
                "y": 0,
                "confidence": 0,
                "end_index": 0,
                "label": "label",
                "start_index": 0
              }
            ],
            "type": "text"
          }
        ],
        "page_height": 0,
        "page_number": 0,
        "page_width": 0,
        "success": true
      }
    ]
  },
  "job_metadata": {
    "foo": "bar"
  },
  "markdown": {
    "pages": [
      {
        "markdown": "markdown",
        "page_number": 0,
        "success": true,
        "footer": "footer",
        "header": "header"
      }
    ]
  },
  "markdown_full": "markdown_full",
  "metadata": {
    "pages": [
      {
        "page_number": 0,
        "confidence": 0,
        "cost_optimized": true,
        "original_orientation_angle": 0,
        "printed_page_number": "printed_page_number",
        "slide_section_name": "slide_section_name",
        "speaker_notes": "speaker_notes",
        "triggered_auto_mode": true
      }
    ]
  },
  "raw_parameters": {
    "foo": "bar"
  },
  "result_content_metadata": {
    "foo": {
      "size_bytes": 0,
      "exists": true,
      "presigned_url": "presigned_url"
    }
  },
  "text": {
    "pages": [
      {
        "page_number": 0,
        "text": "text"
      }
    ]
  },
  "text_full": "text_full"
}