Skip to content

Commit

Permalink
fix: : start_date and end_date not required in /stat reponse (swagger…
Browse files Browse the repository at this point in the history
… specs) #1767 (#1768)
  • Loading branch information
duttarnab authored Jul 12, 2022
1 parent d8a2f4f commit c21452a
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions jans-config-api/docs/jans-config-api-swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -6058,10 +6068,6 @@ components:
properties:
month:
type: integer
start_month:
type: integer
end_month:
type: integer
monthly_active_users:
type: integer
format: int64
Expand Down

0 comments on commit c21452a

Please sign in to comment.