| 51 | |
| 52 | |
| 53 | class AnnotationItem(BaseModel): |
| 54 | id: str |
| 55 | page: int |
| 56 | start_line: int |
| 57 | end_line: int |
| 58 | text: str |
| 59 | comment: str |
| 60 | summary: str | None = None |
| 61 | object_type: str = 'suggestion' |
| 62 | severity: str | None = None |
| 63 | created_at: datetime = Field(default_factory=utcnow) |
| 64 | |
| 65 | |
| 66 | class JobArtifacts(BaseModel): |