| 7 | url: str = Field(description="URL to add to the pipeline") |
| 8 | |
| 9 | class SchemaField(BaseModel): |
| 10 | name: str = Field(description="Field name") |
| 11 | type: str = Field(description="Field type (str, int, float, bool, list)") |
| 12 | description: str = Field(description="Field description") |
| 13 | |
| 14 | class SchemaInput(BaseModel): |
| 15 | fields: List[SchemaField] = Field(description="List of schema fields") |
nothing calls this directly
no outgoing calls
no test coverage detected