From 66d47ceb696c8db736cc2319c41099d878fe0c78 Mon Sep 17 00:00:00 2001 From: Kriti Jain Date: Thu, 1 Aug 2024 10:55:09 -0500 Subject: [PATCH] MODFQMMGR-390:Add a way to hide fields in the UI --- .../resources/swagger.api/schemas/entityTypeColumn.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/resources/swagger.api/schemas/entityTypeColumn.json b/src/main/resources/swagger.api/schemas/entityTypeColumn.json index 0b1009c..7b8895e 100644 --- a/src/main/resources/swagger.api/schemas/entityTypeColumn.json +++ b/src/main/resources/swagger.api/schemas/entityTypeColumn.json @@ -24,9 +24,15 @@ "sourceAlias": { "description": "Source alias for this column", "type": "string" + }, + "hidden": { + "description": "Indicates if the field is hidden in UI", + "type": "boolean", + "default": false } }, "required": [] } ] } +