| 24 | ) |
| 25 | |
| 26 | class Config: |
| 27 | json_schema_extra = { |
| 28 | "example": { |
| 29 | "csvFiles": [ |
| 30 | { |
| 31 | "content": "Name, Age\nAlice, 25\nBob, 30", |
| 32 | "filename": "example.csv", |
| 33 | "filesize": 123, |
| 34 | "id": "123", |
| 35 | "type": "text/csv", |
| 36 | } |
| 37 | ] |
| 38 | } |
| 39 | } |
| 40 | alias_generator = to_camel |
| 41 | |
| 42 | |
| 43 | class Annotation(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected