mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-05-16 03:25:23 +00:00
11 lines
221 B
Python
11 lines
221 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class DocumentClassifierSchema(BaseModel):
|
|
title: str
|
|
tags: list[str]
|
|
correspondents: list[str]
|
|
document_types: list[str]
|
|
storage_paths: list[str]
|
|
dates: list[str]
|