From e8c676b1244a16bf8965159f6ac3a8e1e2a5f9da Mon Sep 17 00:00:00 2001 From: Kriti Jain Date: Fri, 13 Dec 2024 18:47:28 +0530 Subject: [PATCH] MODFQMMGR-548:Refactor array handling to treat arrays as JSONB --- src/main/resources/swagger.api/schemas/field.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/resources/swagger.api/schemas/field.json b/src/main/resources/swagger.api/schemas/field.json index 65398ee..9019d12 100644 --- a/src/main/resources/swagger.api/schemas/field.json +++ b/src/main/resources/swagger.api/schemas/field.json @@ -58,6 +58,11 @@ "ecsOnly": { "description": "Indicates if the field is available only in ECS environments", "type": "boolean" + }, + "isJsonbArray": { + "description": "Indicates whether to treat the array field as a JSONB array or a Postgres array for query generation and processing. Defaults to false", + "type": "boolean", + "default": false } }, "required": ["name", "dataType"]