Apache Airflow · JSON Structure

Airflow Dag Schedule Asset Reference Structure

DAG schedule reference serializer for assets.

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

DagScheduleAssetReference 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

dag_id created_at updated_at

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-dag-schedule-asset-reference-structure.json",
  "name": "DagScheduleAssetReference",
  "description": "DAG schedule reference serializer for assets.",
  "type": "object",
  "properties": {
    "dag_id": {
      "type": "string",
      "title": "Dag Id"
    },
    "created_at": {
      "type": "datetime",
      "title": "Created At"
    },
    "updated_at": {
      "type": "datetime",
      "title": "Updated At"
    }
  },
  "required": [
    "dag_id",
    "created_at",
    "updated_at"
  ],
  "additionalProperties": false
}