create_document_type
Define custom document types in Paperless-NGX by specifying a name, matching criteria, and algorithm for document classification. Streamline organization and retrieval.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
match | No | ||
matching_algorithm | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"match": {
"type": "string"
},
"matching_algorithm": {
"enum": [
"any",
"all",
"exact",
"regular expression",
"fuzzy"
],
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}