From cd2be1cf1de18711069eb7631de97ae70b0f1bae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Bregu=C5=82a?= Date: Wed, 29 Apr 2020 06:16:25 +0200 Subject: [PATCH] Chaange type for DAGID, DAGRunID, TaskID --- openapi.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index b025b461594ddb..363b0f9f45dae7 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -1854,7 +1854,7 @@ components: in: path name: dag_id schema: - type: integer + type: string required: true description: The DAG ID. @@ -1862,7 +1862,7 @@ components: in: path name: dag_run_id schema: - type: integer + type: string required: true description: The DAG Run ID. @@ -1870,7 +1870,7 @@ components: in: path name: task_id schema: - type: integer + type: string required: true description: The Task ID.