{ "$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 }