One file that failed extraction, with classification.
| 124 | |
| 125 | |
| 126 | class FailureEntry(BaseModel): |
| 127 | """One file that failed extraction, with classification.""" |
| 128 | |
| 129 | path: str |
| 130 | reason_class: str | None = None |
| 131 | message: str |
| 132 | |
| 133 | |
| 134 | class SkipEntry(BaseModel): |