> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ExportFormat

> ExportFormat enumerator — the formats available for files exported from a Custom activity or via External Export.

`ExportFormat` specifies the format of exported files sent to the external system.

## Default formats

Formats available in a Custom activity by default (format names identical to those used in scripts):

| Format         | Description                                                                                                                                                                           |
| :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| **Pdf**        | PDF document with a text layer.                                                                                                                                                       |
| **Json**       | Extracted data such as field values, field structure, and rule check errors. See the [JSON schema](/vantage/documentation/skill-designer/process/custom-activity/public-schema-json). |
| **OcrJson**    | Full-text recognition data in JSON format. See the [OCR JSON schema](/vantage/documentation/skill-designer/process/custom-activity/ocr-skill-schema-json).                            |
| **FieldsJson** | Simplified JSON file — contains only field values and rule check errors.                                                                                                              |

## Custom export formats

When a Custom activity is used as External Export, scripts can only access output files created by the [Output activity](/vantage/documentation/skill-designer/process/output-activity/output-activity). The following additional formats are available:

| Format         | Description                                                                                                                                                                           |
| :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| **FieldsJson** | Simplified JSON file — contains only field values and rule check errors.                                                                                                              |
| **Json**       | Extracted data such as field values, field structure, and rule check errors. See the [JSON schema](/vantage/documentation/skill-designer/process/custom-activity/public-schema-json). |
| **Xml**        | Extracted data such as field values, field structure, and rule check errors. See the [XML schema](/vantage/documentation/skill-designer/process/custom-activity/ocr-schema-xml).      |
| **Csv**        | Extracted text data with values of repeating or non-repeating fields.                                                                                                                 |
| **Pdf**        | PDF document with a text layer.                                                                                                                                                       |
| **Jpeg**       | Extracted image data in JPG format.                                                                                                                                                   |
| **Tiff**       | Extracted image data in TIFF format.                                                                                                                                                  |
| **Text**       | Extracted text data in TXT format.                                                                                                                                                    |
| **Docx**       | Extracted text and image data in DOCX format.                                                                                                                                         |
| **Xlsx**       | Extracted text and image data in XLSX format.                                                                                                                                         |
| **OcrJson**    | Full-text recognition data in JSON format. See the [OCR JSON schema](/vantage/documentation/skill-designer/process/custom-activity/ocr-skill-schema-json).                            |

To specify output formats, click **Settings** in the **Exported Data** section of the **Output** activity's Actions pane. See [Data export formats](/vantage/documentation/skill-designer/process/output-activity/export-formats) for what each option produces.

## Related topics

<CardGroup cols={2}>
  <Card title="DocumentExportResult" icon="file-export" href="/vantage/documentation/skill-designer/process/custom-activity/document-export-result">
    Access exported document files (JSON, PDF, images) from a script.
  </Card>

  <Card title="Output activity" icon="file-export" href="/vantage/documentation/skill-designer/process/output-activity/output-activity">
    Export recognized text and extracted data to external systems.
  </Card>

  <Card title="Data export formats" icon="list" href="/vantage/documentation/skill-designer/process/output-activity/export-formats">
    Reference for export formats and options on the Output activity.
  </Card>

  <Card title="Object model" icon="diagram-project" href="/vantage/documentation/skill-designer/process/custom-activity/object-model">
    Full JavaScript object reference for Custom activity scripts.
  </Card>
</CardGroup>
