Apache Airflow · JSON Structure

Openapi.Yaml Trigger Structure

Trigger schema from Apache Airflow API

Type: object Properties: 5
ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

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

Properties

classpath created_date id kwargs 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/apache-airflow/refs/heads/main/json-structure/openapi.yaml-trigger-structure.json",
  "name": "Trigger",
  "description": "Trigger schema from Apache Airflow API",
  "type": "object",
  "properties": {
    "classpath": {
      "type": "string"
    },
    "created_date": {
      "format": "datetime",
      "type": "string"
    },
    "id": {
      "type": "integer"
    },
    "kwargs": {
      "type": "string"
    },
    "triggerer_id": {
      "nullable": true,
      "type": "integer"
    }
  }
}