Apache Airflow · JSON Structure

Airflow Trigger Response Structure

Trigger serializer for responses.

Type: object Properties: 6 Required: 6
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

TriggerResponse is a JSON Structure definition published by Apache Airflow, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id classpath kwargs created_date queue triggerer_id

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/airflow/refs/heads/main/json-structure/airflow-trigger-response-structure.json",
  "name": "TriggerResponse",
  "description": "Trigger serializer for responses.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "title": "Id"
    },
    "classpath": {
      "type": "string",
      "title": "Classpath"
    },
    "kwargs": {
      "type": "string",
      "title": "Kwargs"
    },
    "created_date": {
      "type": "datetime",
      "title": "Created Date"
    },
    "queue": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Queue"
    },
    "triggerer_id": {
      "anyOf": [
        {
          "type": "int32"
        },
        {
          "type": "null"
        }
      ],
      "title": "Triggerer Id"
    }
  },
  "required": [
    "id",
    "classpath",
    "kwargs",
    "created_date",
    "queue",
    "triggerer_id"
  ]
}