This is an automated email from the ASF dual-hosted git repository.
bugraoz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 2c36790a3ba Generate TaskSDK datamodels (#61469)
2c36790a3ba is described below
commit 2c36790a3ba0196396a7b8ac79e6f59aa1e21fdc
Author: Abhishek Mishra <[email protected]>
AuthorDate: Thu Feb 5 03:20:11 2026 +0530
Generate TaskSDK datamodels (#61469)
---
task-sdk/src/airflow/sdk/api/datamodels/_generated.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/task-sdk/src/airflow/sdk/api/datamodels/_generated.py
b/task-sdk/src/airflow/sdk/api/datamodels/_generated.py
index e72cbae4f0e..e3aa9c5c892 100644
--- a/task-sdk/src/airflow/sdk/api/datamodels/_generated.py
+++ b/task-sdk/src/airflow/sdk/api/datamodels/_generated.py
@@ -371,6 +371,8 @@ class ValidationError(BaseModel):
loc: Annotated[list[str | int], Field(title="Location")]
msg: Annotated[str, Field(title="Message")]
type: Annotated[str, Field(title="Error Type")]
+ input: Annotated[Any | None, Field(title="Input")] = None
+ ctx: Annotated[dict[str, Any] | None, Field(title="Context")] = None
class VariablePostBody(BaseModel):