Skip to content

Commit

Permalink
docs: 정렬/필터링 값 설명 보충
Browse files Browse the repository at this point in the history
  • Loading branch information
linirini committed Jan 8, 2025
1 parent ee37cfc commit d6e8bc8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

@Schema(description = "추억 목록 조회시 정렬과 필터링 조건을 위한 요청 형식입니다.")
public record MemoryReadRequest(
@Schema(description = "기간 필터 사용 여부", example = "true")
@Schema(description = "기간 필터 사용 여부 (대소문자 구분 X)", example = "true")
String term,
@Schema(description = "정렬 기준 (UPDATED, NEWEST, OLDEST)", example = "NEWEST")
@Schema(description = "정렬 기준 (UPDATED, NEWEST, OLDEST / 대소문자 구분 X)", example = "NEWEST")
String sort
) {
private static final String TERM = "term";
Expand Down

0 comments on commit d6e8bc8

Please sign in to comment.