Apache Airflow · Schema

Trigger

Trigger schema from Apache Airflow API

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

Properties

Name Type Description
classpath string
created_date string
id integer
kwargs string
triggerer_id integer
View JSON Schema on GitHub

JSON Schema

openapi.yaml-trigger-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-airflow/refs/heads/main/json-schema/openapi.yaml-trigger-schema.json",
  "title": "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"
    }
  }
}