From 020613a6dab79d62a25b766615bb7c5441e2eda5 Mon Sep 17 00:00:00 2001 From: codingwithabhi <63392662+codingwithabhi@users.noreply.github.com> Date: Thu, 10 Mar 2022 17:34:07 +0530 Subject: [PATCH] ISSUE-3328: airflow-pipeline-date-bug-fix (#3352) --- .../main/resources/json/schema/entity/data/pipeline.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/catalog-rest-service/src/main/resources/json/schema/entity/data/pipeline.json b/catalog-rest-service/src/main/resources/json/schema/entity/data/pipeline.json index daba5e7aab8..d3e78a9473d 100644 --- a/catalog-rest-service/src/main/resources/json/schema/entity/data/pipeline.json +++ b/catalog-rest-service/src/main/resources/json/schema/entity/data/pipeline.json @@ -79,6 +79,14 @@ "description": "SQL used in the task. Can be used to determine the lineage.", "$ref": "../../type/basic.json#/definitions/sqlQuery" }, + "startDate": { + "description": "start date for the task.", + "type": "string" + }, + "endDate": { + "description": "end date for the task.", + "type": "string" + }, "tags": { "description": "Tags for this task.", "type": "array",