Apache Airflow · JSON Structure

Airflow Asset Watcher Response Structure

Asset watcher serializer for responses.

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

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

Properties

name trigger_id created_date

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-asset-watcher-response-structure.json",
  "name": "AssetWatcherResponse",
  "description": "Asset watcher serializer for responses.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name"
    },
    "trigger_id": {
      "type": "int32",
      "title": "Trigger Id"
    },
    "created_date": {
      "type": "datetime",
      "title": "Created Date"
    }
  },
  "required": [
    "name",
    "trigger_id",
    "created_date"
  ]
}