We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73282bd commit 2c36790Copy full SHA for 2c36790
task-sdk/src/airflow/sdk/api/datamodels/_generated.py
@@ -371,6 +371,8 @@ class ValidationError(BaseModel):
371
loc: Annotated[list[str | int], Field(title="Location")]
372
msg: Annotated[str, Field(title="Message")]
373
type: Annotated[str, Field(title="Error Type")]
374
+ input: Annotated[Any | None, Field(title="Input")] = None
375
+ ctx: Annotated[dict[str, Any] | None, Field(title="Context")] = None
376
377
378
class VariablePostBody(BaseModel):
0 commit comments