| 337 | |
| 338 | |
| 339 | class MetadataRecord(TypedDict, total=False): |
| 340 | title: str |
| 341 | translated_title: str |
| 342 | paper_id: str |
| 343 | source_type: str |
| 344 | source_url: str |
| 345 | year: str |
| 346 | authors: list[str] |
| 347 | affiliations: list[str] |
| 348 | venue: str |
| 349 | doi: str |
| 350 | abstract: str |
| 351 | code_url: str |
| 352 | project_url: str |
| 353 | zotero_key: str |
| 354 | arxiv_id: str |
| 355 | metadata_sources: list[str] |
| 356 | identity_confidence: str |
| 357 | identity_confidence_reasons: list[str] |
| 358 | |
| 359 | |
| 360 | class EvidenceItem(TypedDict, total=False): |