create_tag
Add new tags to your Paperless-NGX instance by specifying a name, color, match string, and matching algorithm for automated document tagging.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | ||
match | No | ||
matching_algorithm | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"pattern": "^#[0-9A-Fa-f]{6}$",
"type": "string"
},
"match": {
"type": "string"
},
"matching_algorithm": {
"maximum": 4,
"minimum": 0,
"type": "integer"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}