One file the extractor intentionally skipped, with classification.
| 132 | |
| 133 | |
| 134 | class SkipEntry(BaseModel): |
| 135 | """One file the extractor intentionally skipped, with classification.""" |
| 136 | |
| 137 | path: str |
| 138 | reason_class: str | None = None |
| 139 | message: str |
| 140 | |
| 141 | |
| 142 | class ExtractionReport(BaseModel): |