mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-07-29 07:14:56 +00:00
13 lines
280 B
Python
13 lines
280 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class DocumentClassifierSchema(BaseModel):
|
|
"""Schema for document classification suggestions."""
|
|
|
|
title: str
|
|
tags: list[str]
|
|
correspondents: list[str]
|
|
document_types: list[str]
|
|
storage_paths: list[str]
|
|
dates: list[str]
|