update_document_type
Modify document type settings in Paperless-NGX by updating metadata such as name and matching algorithm to improve document organization and retrieval.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
match | No | ||
matching_algorithm | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "number"
},
"match": {
"type": "string"
},
"matching_algorithm": {
"enum": [
"any",
"all",
"exact",
"regular expression",
"fuzzy"
],
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"name"
],
"type": "object"
}