Apache Airflow · JSON Structure

Openapi.Yaml Update Task Instance Structure

UpdateTaskInstance schema from Apache Airflow API

Type: object Properties: 2
ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

UpdateTaskInstance is a JSON Structure definition published by Apache Airflow, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

dry_run new_state

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-airflow/refs/heads/main/json-structure/openapi.yaml-update-task-instance-structure.json",
  "name": "UpdateTaskInstance",
  "description": "UpdateTaskInstance schema from Apache Airflow API",
  "type": "object",
  "properties": {
    "dry_run": {
      "default": false,
      "description": "If set, don't actually run this operation. The response will contain the task instance\nplanned to be affected, but won't be modified in any way.\n",
      "type": "boolean"
    },
    "new_state": {
      "description": "Expected new state.",
      "enum": [
        "success",
        "failed"
      ],
      "type": "string"
    }
  }
}