Skip to content

Commit

Permalink
HDX-10326 update params description
Browse files Browse the repository at this point in the history
  • Loading branch information
ccataalin authored Dec 28, 2024
1 parent 023a6f4 commit 7f1ab77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hdx_hapi/endpoints/util/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,13 +225,13 @@ async def common_date_range_params(
start_date: Annotated[
Optional[str],
Query(
description='Filter the response to keep rows where the reference period end is after this date or null, e.g. 2020, 2020-01, 2020-01-01 or 2020-01-01T00:00:00' # noqa
description='Filter entries to include rows where the reference period overlaps with or extends beyond this date, e.g. 2020, 2020-01, 2020-01-01 or 2020-01-01T00:00:00' # noqa
),
] = None,
end_date: Annotated[
Optional[str],
Query(
description='Filter the response to keep rows where the reference period start is before this date, e.g. 2020, 2020-01, 2020-01-01, 2020-01-01 or 2020-01-01T23:59:59' # noqa
description='Filter entries to include rows where the reference period overlaps with or begins prior to this date, e.g. 2020, 2020-01, 2020-01-01, 2020-01-01 or 2020-01-01T23:59:59' # noqa
),
] = None,
) -> CommonDateRangeParams:
Expand Down

0 comments on commit 7f1ab77

Please sign in to comment.