Apache Airflow · Schema

DagScheduleAssetReference

DAG schedule reference serializer for assets.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
dag_id string
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

airflow-dag-schedule-asset-reference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-dag-schedule-asset-reference-schema.json",
  "title": "DagScheduleAssetReference",
  "description": "DAG schedule reference serializer for assets.",
  "type": "object",
  "properties": {
    "dag_id": {
      "type": "string",
      "title": "Dag Id"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "title": "Created At"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "title": "Updated At"
    }
  },
  "required": [
    "dag_id",
    "created_at",
    "updated_at"
  ],
  "additionalProperties": false
}