From c21452a95567da2f7441e57268268b8d6cb65cfb Mon Sep 17 00:00:00 2001 From: Arnab Dutta <32794267+duttarnab@users.noreply.github.com> Date: Tue, 12 Jul 2022 14:41:01 +0530 Subject: [PATCH] fix: : start_date and end_date not required in /stat reponse (swagger specs) #1767 (#1768) --- .../docs/jans-config-api-swagger.yaml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/jans-config-api/docs/jans-config-api-swagger.yaml b/jans-config-api/docs/jans-config-api-swagger.yaml index 4c6ca047ddc..daddf191bb6 100644 --- a/jans-config-api/docs/jans-config-api-swagger.yaml +++ b/jans-config-api/docs/jans-config-api-swagger.yaml @@ -2384,9 +2384,19 @@ paths: type: string in: query name: month - description: Month for which the stat report is to be fetched. + description: Month for which the stat report is to be fetched. The parameter is mandatory if start_month and end_month parameters are not present. example: 202012 (2020 Dec) 202101 (2021 Jan)) required: true + - schema: + type: string + in: query + name: start_month + description: Start-Month for which the stat report is to be fetched. + - schema: + type: string + in: query + name: end_month + description: End-Month for which the stat report is to be fetched. - schema: type: string enum: @@ -6058,10 +6068,6 @@ components: properties: month: type: integer - start_month: - type: integer - end_month: - type: integer monthly_active_users: type: integer format: int64